pub enum ShLit {
Int(i64),
Float(f64),
Str(String),
Bool(bool),
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShLit
impl RefUnwindSafe for ShLit
impl Send for ShLit
impl Sync for ShLit
impl Unpin for ShLit
impl UnwindSafe for ShLit
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