pub enum Predicate {
Truthy(TruthyPredicate),
IsA(IsAPredicate),
TypeGuard(TypeGuardPredicate),
Eq(EqPredicate),
And(AndPredicate),
Or(OrPredicate),
Not(NotPredicate),
}Variants§
Truthy(TruthyPredicate)
IsA(IsAPredicate)
TypeGuard(TypeGuardPredicate)
Eq(EqPredicate)
And(AndPredicate)
Or(OrPredicate)
Not(NotPredicate)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Send for Predicate
impl !Sync for Predicate
impl Freeze for Predicate
impl RefUnwindSafe for Predicate
impl Unpin for Predicate
impl UnsafeUnpin for Predicate
impl UnwindSafe for Predicate
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