Struct bevy_ecs::event::EventRegistry
source · pub struct EventRegistry {
pub should_update: ShouldUpdateEvents,
/* private fields */
}
Expand description
A registry of all of the Events
in the World
, used by event_update_system
to update all of the events.
Fields§
§should_update: ShouldUpdateEvents
Should the events be updated?
This field is generally automatically updated by the signal_event_update_system
.
Implementations§
source§impl EventRegistry
impl EventRegistry
sourcepub fn register_event<T: Event>(world: &mut World)
pub fn register_event<T: Event>(world: &mut World)
Registers an event type to be updated in a given World
If no instance of the EventRegistry
exists in the world, this will add one - otherwise it will use
the existing instance.
sourcepub fn deregister_events<T: Event>(world: &mut World)
pub fn deregister_events<T: Event>(world: &mut World)
Removes an event from the world and it’s associated EventRegistry
.
sourcepub fn run_updates(&mut self, world: &mut World, last_change_tick: Tick)
pub fn run_updates(&mut self, world: &mut World, last_change_tick: Tick)
Updates all of the registered events in the World.
Trait Implementations§
source§impl Default for EventRegistry
impl Default for EventRegistry
source§fn default() -> EventRegistry
fn default() -> EventRegistry
Returns the “default value” for a type. Read more
impl Resource for EventRegistry
Auto Trait Implementations§
impl Freeze for EventRegistry
impl RefUnwindSafe for EventRegistry
impl Send for EventRegistry
impl Sync for EventRegistry
impl Unpin for EventRegistry
impl UnwindSafe for EventRegistry
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self
using data from the given World
.