[][src]Enum legion::query::FilterResult

pub enum FilterResult {
    Match(bool),
    Defer,
}

Indicates if an an archetype should be accepted or rejected.

Variants

Match(bool)

The filter has made a decision, true for accept, false for reject.

Defer

The filter has not made a decision, defer to other filters.

Implementations

impl FilterResult[src]

pub fn coalesce_and(self, other: Self) -> Self[src]

Combines the result with a logical and operator.

pub fn coalesce_or(self, other: Self) -> Self[src]

Combines the result with a logical or operator.

pub fn is_pass(&self) -> bool[src]

Returns true if the archetype should be accepted.

Trait Implementations

impl BitAnd<FilterResult> for FilterResult[src]

type Output = FilterResult

The resulting type after applying the & operator.

impl BitOr<FilterResult> for FilterResult[src]

type Output = FilterResult

The resulting type after applying the | operator.

Auto Trait Implementations

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, 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>,