[][src]Struct legion::query::Not

pub struct Not<F> { /* fields omitted */ }

A filter which negates F.

Trait Implementations

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

type Output = Self

The resulting type after applying the & operator.

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

type Output = And<(Self, Rhs)>

The resulting type after applying the & operator.

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

type Output = Self

The resulting type after applying the | operator.

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

type Output = Or<(Self, Rhs)>

The resulting type after applying the | operator.

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

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

impl<F: Default> Default for Not<F>[src]

impl<F: DynamicFilter> DynamicFilter for Not<F>[src]

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

impl<F: LayoutFilter> LayoutFilter for Not<F>[src]

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> Downcast for T where
    T: Any
[src]

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,