pub enum ParsedInteger {
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedInteger
impl RefUnwindSafe for ParsedInteger
impl Send for ParsedInteger
impl Sync for ParsedInteger
impl Unpin for ParsedInteger
impl UnwindSafe for ParsedInteger
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