pub enum IrExpression {
Variable(String),
Move(String),
Borrow(String, BorrowKind),
New(String),
Literal(String),
}Variants§
Trait Implementations§
Source§impl Clone for IrExpression
impl Clone for IrExpression
Source§fn clone(&self) -> IrExpression
fn clone(&self) -> IrExpression
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 moreAuto Trait Implementations§
impl Freeze for IrExpression
impl RefUnwindSafe for IrExpression
impl Send for IrExpression
impl Sync for IrExpression
impl Unpin for IrExpression
impl UnwindSafe for IrExpression
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