[][src]Struct legion::filter::ComponentChangedFilter

pub struct ComponentChangedFilter<T> where
    T: Component
{ /* fields omitted */ }

A filter which requires that entity data of type T has changed within the chunk since the last time the filter was executed.

Trait Implementations

impl<T> ActiveFilter for ComponentChangedFilter<T> where
    T: Component
[src]

impl<'a, T> BitAnd<Passthrough> for ComponentChangedFilter<T> where
    T: Component
[src]

type Output = ComponentChangedFilter<T>

The resulting type after applying the & operator.

impl<'a, T, Rhs> BitAnd<Rhs> for ComponentChangedFilter<T> where
    Rhs: ActiveFilter,
    T: Component
[src]

type Output = And<(ComponentChangedFilter<T>, Rhs)>

The resulting type after applying the & operator.

impl<'a, T> BitOr<Passthrough> for ComponentChangedFilter<T> where
    T: Component
[src]

type Output = ComponentChangedFilter<T>

The resulting type after applying the | operator.

impl<'a, T, Rhs> BitOr<Rhs> for ComponentChangedFilter<T> where
    Rhs: ActiveFilter,
    T: Component
[src]

type Output = Or<(ComponentChangedFilter<T>, Rhs)>

The resulting type after applying the | operator.

impl<T> Clone for ComponentChangedFilter<T> where
    T: Component
[src]

impl<T> Debug for ComponentChangedFilter<T> where
    T: Component + Debug
[src]

impl<'a, T> Filter<ChunkFilterData<'a>> for ComponentChangedFilter<T> where
    T: Component
[src]

type Iter = ComponentChangedState<'a, ComponentStorage>

impl<'a, T> Not for ComponentChangedFilter<T> where
    T: Component
[src]

type Output = Not<ComponentChangedFilter<T>>

The resulting type after applying the ! operator.

Auto Trait Implementations

impl<T> RefUnwindSafe for ComponentChangedFilter<T> where
    T: RefUnwindSafe

impl<T> Send for ComponentChangedFilter<T>

impl<T> Sync for ComponentChangedFilter<T>

impl<T> Unpin for ComponentChangedFilter<T> where
    T: Unpin

impl<T> UnwindSafe for ComponentChangedFilter<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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: 'static + 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.