pub enum LitVal {
Hex(String),
Oct(String),
Bin(String),
Dec(String),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LitVal
impl RefUnwindSafe for LitVal
impl Send for LitVal
impl Sync for LitVal
impl Unpin for LitVal
impl UnwindSafe for LitVal
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