pub enum IrLit {
Unit,
Bool(bool),
Nat(u64),
Int(i64),
String(String),
}Expand description
Intermediate representation literal values
Variants§
Trait Implementations§
impl StructuralPartialEq for IrLit
Auto Trait Implementations§
impl Freeze for IrLit
impl RefUnwindSafe for IrLit
impl Send for IrLit
impl Sync for IrLit
impl Unpin for IrLit
impl UnsafeUnpin for IrLit
impl UnwindSafe for IrLit
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