pub enum SimpleExpr {
Var(String),
Item(String),
Val(Val),
}Variants§
Trait Implementations§
Source§impl Clone for SimpleExpr
impl Clone for SimpleExpr
Source§fn clone(&self) -> SimpleExpr
fn clone(&self) -> SimpleExpr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SimpleExpr
impl Debug for SimpleExpr
Source§impl PartialEq for SimpleExpr
impl PartialEq for SimpleExpr
impl StructuralPartialEq for SimpleExpr
Auto Trait Implementations§
impl Freeze for SimpleExpr
impl RefUnwindSafe for SimpleExpr
impl Send for SimpleExpr
impl Sync for SimpleExpr
impl Unpin for SimpleExpr
impl UnwindSafe for SimpleExpr
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