pub enum Expression {
Logical(Box<LogicalExpression>),
Predicate(Predicate),
}
Variants§
Logical(Box<LogicalExpression>)
Predicate(Predicate)
Trait Implementations§
Source§impl Debug for Expression
impl Debug for Expression
Source§impl Translate for Expression
impl Translate for Expression
Auto Trait Implementations§
impl Freeze for Expression
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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