[][src]Struct legion::filter::Not

pub struct Not<F> {
    pub filter: F,
}

A filter which negates F.

Fields

filter: F

Trait Implementations

impl<F> ActiveFilter for Not<F>[src]

impl<'a, F> BitAnd<Passthrough> for Not<F>[src]

type Output = Not<F>

The resulting type after applying the & operator.

impl<'a, F, Rhs> BitAnd<Rhs> for Not<F> where
    Rhs: ActiveFilter
[src]

type Output = And<(Not<F>, Rhs)>

The resulting type after applying the & operator.

impl<'a, F> BitOr<Passthrough> for Not<F>[src]

type Output = Not<F>

The resulting type after applying the | operator.

impl<'a, F, Rhs> BitOr<Rhs> for Not<F> where
    Rhs: ActiveFilter
[src]

type Output = Or<(Not<F>, Rhs)>

The resulting type after applying the | operator.

impl<F> Clone for Not<F> where
    F: Clone
[src]

impl<F> Debug for Not<F> where
    F: Debug
[src]

impl<'a, T, F> Filter<T> for Not<F> where
    F: Filter<T>,
    T: Copy
[src]

type Iter = <F as Filter<T>>::Iter

Auto Trait Implementations

impl<F> RefUnwindSafe for Not<F> where
    F: RefUnwindSafe

impl<F> Send for Not<F> where
    F: Send

impl<F> Sync for Not<F> where
    F: Sync

impl<F> Unpin for Not<F> where
    F: Unpin

impl<F> UnwindSafe for Not<F> where
    F: 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.