[][src]Enum descartes::AreaFilter

pub enum AreaFilter<L: PartialEq + Eq + Clone + Hash> {
    Always,
    Function(Box<dyn Fn(&[L]) -> bool>),
    Not(Box<AreaFilter<L>>),
    And(Box<AreaFilter<L>>, Box<AreaFilter<L>>),
    Or(Box<AreaFilter<L>>, Box<AreaFilter<L>>),
}

Variants

AlwaysFunction(Box<dyn Fn(&[L]) -> bool>)Not(Box<AreaFilter<L>>)And(Box<AreaFilter<L>>, Box<AreaFilter<L>>)Or(Box<AreaFilter<L>>, Box<AreaFilter<L>>)

Methods

impl<L: PartialEq + Eq + Clone + Hash + 'static> AreaFilter<L>[src]

pub fn has(label: L) -> Self[src]

pub fn any_of(unioned_labels: Vec<L>) -> Self[src]

pub fn all_of(intersected_labels: Vec<L>) -> Self[src]

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

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

pub fn not(self) -> Self[src]

Auto Trait Implementations

impl<L> !Send for AreaFilter<L>

impl<L> !Sync for AreaFilter<L>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,