pub enum NumberType {
FloatingPointNumber = 1,
SignedInteger = 2,
UnsignedInteger = 3,
}
Variants§
Trait Implementations§
Source§impl Debug for NumberType
impl Debug for NumberType
Source§impl From<i32> for NumberType
impl From<i32> for NumberType
Source§impl PartialEq for NumberType
impl PartialEq for NumberType
impl StructuralPartialEq for NumberType
Auto Trait Implementations§
impl Freeze for NumberType
impl RefUnwindSafe for NumberType
impl Send for NumberType
impl Sync for NumberType
impl Unpin for NumberType
impl UnwindSafe for NumberType
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