pub enum Expr<'i> {
Ident(Ident<'i>),
Str(Str<'i>),
FnCall(FnCall<'i>),
Num(Num),
BinOp(BinOp, Box<Self>, Box<Self>),
}Variants§
Implementations§
Trait Implementations§
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