pub enum LogicalExpression {
And(Expression, Expression),
Or(Expression, Expression),
Not(Expression),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogicalExpression
impl RefUnwindSafe for LogicalExpression
impl Send for LogicalExpression
impl Sync for LogicalExpression
impl Unpin for LogicalExpression
impl UnwindSafe for LogicalExpression
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