pub struct EntityCreatedEvent<E: Entity> {
pub entity_id: EntityId<E>,
}Expand description
Emitted when a new entity is created. These should not be emitted outside this module.
Fields§
§entity_id: EntityId<E>The EntityId<E> of the new entity.
Implementations§
Trait Implementations§
Source§impl<E: Entity> Clone for EntityCreatedEvent<E>
impl<E: Entity> Clone for EntityCreatedEvent<E>
Source§impl<E: Entity> IxaEvent for EntityCreatedEvent<E>
impl<E: Entity> IxaEvent for EntityCreatedEvent<E>
Source§fn on_subscribe(_context: &mut Context)
fn on_subscribe(_context: &mut Context)
Called every time
context.subscribe_to_event is called with this eventimpl<E: Entity> Copy for EntityCreatedEvent<E>
Auto Trait Implementations§
impl<E> Freeze for EntityCreatedEvent<E>
impl<E> RefUnwindSafe for EntityCreatedEvent<E>where
E: RefUnwindSafe,
impl<E> Send for EntityCreatedEvent<E>where
E: Send,
impl<E> Sync for EntityCreatedEvent<E>where
E: Sync,
impl<E> Unpin for EntityCreatedEvent<E>where
E: Unpin,
impl<E> UnwindSafe for EntityCreatedEvent<E>where
E: UnwindSafe,
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