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