[][src]Struct predicates::BoxPredicate

pub struct BoxPredicate<Item: ?Sized>(_);

Predicate that wraps another Predicate as a trait object, allowing sized storage of predicate types.

Methods

impl<Item> BoxPredicate<Item> where
    Item: ?Sized
[src]

pub fn new<P: Predicate<Item>>(inner: P) -> BoxPredicate<Item> where
    P: Send + Sync + 'static, 
[src]

Creates a new BoxPredicate, a wrapper around a dynamically-dispatched Predicate type with useful trait impls.

Trait Implementations

impl<Item> Display for BoxPredicate<Item> where
    Item: ?Sized
[src]

impl<Item> Debug for BoxPredicate<Item> where
    Item: ?Sized
[src]

impl<Item> Predicate<Item> for BoxPredicate<Item> where
    Item: ?Sized
[src]

impl<Item> PredicateReflection for BoxPredicate<Item> where
    Item: ?Sized
[src]

Auto Trait Implementations

impl<Item: ?Sized> Send for BoxPredicate<Item>

impl<Item: ?Sized> Sync for BoxPredicate<Item>

Blanket Implementations

impl<P, Item> PredicateNameExt for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

fn name(self, name: &'static str) -> NamePredicate<Self, Item> where
    Self: Sized
[src]

Name a predicate expression. Read more

impl<P, Item> PredicateBooleanExt for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

fn and<B>(self, other: B) -> AndPredicate<Self, B, Item> where
    B: Predicate<Item>,
    Self: Sized
[src]

Compute the logical AND of two Predicate results, returning the result. Read more

fn or<B>(self, other: B) -> OrPredicate<Self, B, Item> where
    B: Predicate<Item>,
    Self: Sized
[src]

Compute the logical OR of two Predicate results, returning the result. Read more

fn not(self) -> NotPredicate<Self, Item> where
    Self: Sized
[src]

Compute the logical NOT of a Predicate, returning the result. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

impl<T> From for 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]