pub struct BoxPredicate<Item: ?Sized>(/* private fields */);
Expand description
Predicate
that wraps another Predicate
as a trait object, allowing
sized storage of predicate types.
Implementations§
Source§impl<Item> BoxPredicate<Item>where
Item: ?Sized,
impl<Item> BoxPredicate<Item>where
Item: ?Sized,
Trait Implementations§
Source§impl<Item> Debug for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> Debug for BoxPredicate<Item>where
Item: ?Sized,
Source§impl<Item> Display for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> Display for BoxPredicate<Item>where
Item: ?Sized,
Source§impl<Item> Predicate<Item> for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> Predicate<Item> for BoxPredicate<Item>where
Item: ?Sized,
Source§impl<Item> PredicateReflection for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> PredicateReflection for BoxPredicate<Item>where
Item: ?Sized,
Auto Trait Implementations§
impl<Item> Freeze for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> !RefUnwindSafe for BoxPredicate<Item>
impl<Item> Send for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> Sync for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> Unpin for BoxPredicate<Item>where
Item: ?Sized,
impl<Item> !UnwindSafe for BoxPredicate<Item>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
Source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moreSource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read more