pub enum ExprLocalVariable {
Stack(usize, String),
Upvalue(usize, String),
}
Variants§
Trait Implementations§
Source§impl Clone for ExprLocalVariable
impl Clone for ExprLocalVariable
Source§fn clone(&self) -> ExprLocalVariable
fn clone(&self) -> ExprLocalVariable
Returns a copy 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 ExprLocalVariable
impl RefUnwindSafe for ExprLocalVariable
impl Send for ExprLocalVariable
impl Sync for ExprLocalVariable
impl Unpin for ExprLocalVariable
impl UnwindSafe for ExprLocalVariable
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