pub enum StrLabelType {
    Const(String),
    Lit(String),
    Temp,
    Var,
    ArgRef,
    ArgVal,
    MemRef(usize),
    MemVal(usize),
}Variants§
Trait Implementations§
Source§impl Clone for StrLabelType
 
impl Clone for StrLabelType
Source§fn clone(&self) -> StrLabelType
 
fn clone(&self) -> StrLabelType
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 StrLabelType
 
impl Debug for StrLabelType
Source§impl Ord for StrLabelType
 
impl Ord for StrLabelType
Source§fn cmp(&self, other: &StrLabelType) -> Ordering
 
fn cmp(&self, other: &StrLabelType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StrLabelType
 
impl PartialEq for StrLabelType
Source§impl PartialOrd for StrLabelType
 
impl PartialOrd for StrLabelType
impl Eq for StrLabelType
impl StructuralPartialEq for StrLabelType
Auto Trait Implementations§
impl Freeze for StrLabelType
impl RefUnwindSafe for StrLabelType
impl Send for StrLabelType
impl Sync for StrLabelType
impl Unpin for StrLabelType
impl UnwindSafe for StrLabelType
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