pub enum PortableIntegerKind {
U8,
U16,
U32,
U64,
U128,
Usize,
I8,
I16,
I32,
I64,
I128,
Isize,
}Variants§
Trait Implementations§
Source§impl Clone for PortableIntegerKind
impl Clone for PortableIntegerKind
Source§fn clone(&self) -> PortableIntegerKind
fn clone(&self) -> PortableIntegerKind
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 moreimpl Copy for PortableIntegerKind
Source§impl Debug for PortableIntegerKind
impl Debug for PortableIntegerKind
Source§impl<'de> Deserialize<'de> for PortableIntegerKind
impl<'de> Deserialize<'de> for PortableIntegerKind
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
impl Eq for PortableIntegerKind
Source§impl PartialEq for PortableIntegerKind
impl PartialEq for PortableIntegerKind
Source§impl Serialize for PortableIntegerKind
impl Serialize for PortableIntegerKind
impl StructuralPartialEq for PortableIntegerKind
Auto Trait Implementations§
impl Freeze for PortableIntegerKind
impl RefUnwindSafe for PortableIntegerKind
impl Send for PortableIntegerKind
impl Sync for PortableIntegerKind
impl Unpin for PortableIntegerKind
impl UnsafeUnpin for PortableIntegerKind
impl UnwindSafe for PortableIntegerKind
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