pub enum NumericClass {
Double,
Single,
Int8,
UInt8,
Int16,
UInt16,
Int32,
UInt32,
Int64,
UInt64,
}Variants§
Trait Implementations§
Source§impl Clone for NumericClass
impl Clone for NumericClass
Source§fn clone(&self) -> NumericClass
fn clone(&self) -> NumericClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NumericClass
impl Debug for NumericClass
Source§impl<'de> Deserialize<'de> for NumericClass
impl<'de> Deserialize<'de> for NumericClass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NumericClass
impl PartialEq for NumericClass
Source§fn eq(&self, other: &NumericClass) -> bool
fn eq(&self, other: &NumericClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NumericClass
impl Serialize for NumericClass
impl StructuralPartialEq for NumericClass
Auto Trait Implementations§
impl Freeze for NumericClass
impl RefUnwindSafe for NumericClass
impl Send for NumericClass
impl Sync for NumericClass
impl Unpin for NumericClass
impl UnsafeUnpin for NumericClass
impl UnwindSafe for NumericClass
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