pub enum Expr<'i> {
Unary(UnaryOpExpr<'i>),
Binary(BinaryOpExpr<'i>),
Value(Box<ValueExpr<'i>>),
}
Expand description
Generic expression.
Variants§
Trait Implementations§
Source§impl<'i> IntoBoundedStatic for Expr<'i>
impl<'i> IntoBoundedStatic for Expr<'i>
Source§impl<'i> ToBoundedStatic for Expr<'i>
impl<'i> ToBoundedStatic for Expr<'i>
impl<'i> Eq for Expr<'i>
impl<'i> StructuralPartialEq for Expr<'i>
Auto Trait Implementations§
impl<'i> Freeze for Expr<'i>
impl<'i> RefUnwindSafe for Expr<'i>
impl<'i> Send for Expr<'i>
impl<'i> Sync for Expr<'i>
impl<'i> Unpin for Expr<'i>
impl<'i> UnwindSafe for Expr<'i>
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