[−][src]Enum specs::prelude::ComponentEvent
Component storage events received from a FlaggedStorage
or any storage
that implements Tracked
.
Variants
Inserted(Index)
An insertion event, note that a modification event will be triggered if the entity already had a component and had a new one inserted.
Modified(Index)
A modification event, this will be sent any time a component is accessed
mutably so be careful with joins over &mut storages
as it could
potentially flag all of them.
Removed(Index)
A removal event.
Trait Implementations
impl Copy for ComponentEvent
[src]
impl Eq for ComponentEvent
[src]
impl Clone for ComponentEvent
[src]
fn clone(&self) -> ComponentEvent
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<ComponentEvent> for ComponentEvent
[src]
fn eq(&self, other: &ComponentEvent) -> bool
[src]
fn ne(&self, other: &ComponentEvent) -> bool
[src]
impl Debug for ComponentEvent
[src]
Auto Trait Implementations
impl Unpin for ComponentEvent
impl Sync for ComponentEvent
impl Send for ComponentEvent
impl UnwindSafe for ComponentEvent
impl RefUnwindSafe for ComponentEvent
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Resource for T where
T: Any + Send + Sync,
[src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any,
[src]
T: Any,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Event for T where
T: Send + Sync + 'static,
[src]
T: Send + Sync + 'static,