Enum bool_logic::ast::Expr
source · pub enum Expr<T> {
Any(Any<T>),
All(All<T>),
Not(Not<T>),
Var(Var<T>),
Const(bool),
}Variants§
Trait Implementations§
source§impl<T: PartialEq> PartialEq<Expr<T>> for Expr<T>
impl<T: PartialEq> PartialEq<Expr<T>> for Expr<T>
impl<T: Eq> Eq for Expr<T>
impl<T> StructuralEq for Expr<T>
impl<T> StructuralPartialEq for Expr<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Expr<T>where T: RefUnwindSafe,
impl<T> Send for Expr<T>where T: Send,
impl<T> Sync for Expr<T>where T: Sync,
impl<T> Unpin for Expr<T>where T: Unpin,
impl<T> UnwindSafe for Expr<T>where T: UnwindSafe,
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