pub enum ArgNumber {
Float32(f32),
Float64(f64),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
Int128(i128),
Nat8(u8),
Nat16(u16),
Nat32(u32),
Nat64(u64),
Nat128(u128),
}Expand description
ArgNumber
Variants§
Float32(f32)
Float64(f64)
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
Int128(i128)
Nat8(u8)
Nat16(u16)
Nat32(u32)
Nat64(u64)
Nat128(u128)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgNumber
impl RefUnwindSafe for ArgNumber
impl Send for ArgNumber
impl Sync for ArgNumber
impl Unpin for ArgNumber
impl UnwindSafe for ArgNumber
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