[][src]Enum specs::prelude::ComponentEvent

pub enum ComponentEvent {
    Inserted(Index),
    Modified(Index),
    Removed(Index),
}

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 Clone for ComponentEvent[src]

impl Copy for ComponentEvent[src]

impl Debug for ComponentEvent[src]

impl Eq for ComponentEvent[src]

impl PartialEq<ComponentEvent> for ComponentEvent[src]

impl StructuralEq for ComponentEvent[src]

impl StructuralPartialEq for ComponentEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,