pub enum CompiledPredicate {
Selector(Node),
Not(Box<CompiledPredicate>),
Or(Vec<CompiledPredicate>),
And(Vec<CompiledPredicate>),
}Variants§
Trait Implementations§
source§impl Debug for CompiledPredicate
impl Debug for CompiledPredicate
Auto Trait Implementations§
impl !RefUnwindSafe for CompiledPredicate
impl !Send for CompiledPredicate
impl !Sync for CompiledPredicate
impl Unpin for CompiledPredicate
impl !UnwindSafe for CompiledPredicate
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