pub enum LdcValue {
Index(u16),
String(String),
Int(i32),
Float(f32),
Long(i64),
Double(f64),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LdcValue
impl RefUnwindSafe for LdcValue
impl Send for LdcValue
impl Sync for LdcValue
impl Unpin for LdcValue
impl UnsafeUnpin for LdcValue
impl UnwindSafe for LdcValue
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