pub enum CompiledPredicate {
Selector(Node),
Not(Box<CompiledPredicate>),
Or(Vec<CompiledPredicate>),
And(Vec<CompiledPredicate>),
}Variants
Selector(Node)
Not(Box<CompiledPredicate>)
Or(Vec<CompiledPredicate>)
And(Vec<CompiledPredicate>)
Trait Implementations
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more