pub enum LitValue {
Int(i64),
Float(f64),
Str(String),
}Expand description
Literal value
Variants§
Trait Implementations§
impl StructuralPartialEq for LitValue
Auto Trait Implementations§
impl Freeze for LitValue
impl RefUnwindSafe for LitValue
impl Send for LitValue
impl Sync for LitValue
impl Unpin for LitValue
impl UnsafeUnpin for LitValue
impl UnwindSafe for LitValue
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