pub enum UIntTy {
UInt8,
UInt16,
UInt32,
UInt64,
UInt128,
UInt256,
}
Variants§
UInt8
Represents an 8-bit unsigned integer.
UInt16
Represents a 16-bit unsigned integer.
UInt32
Represents a 32-bit unsigned integer.
UInt64
Represents a 64-bit unsigned integer.
UInt128
Represents a 128-bit unsigned integer.
UInt256
Represents a 256-bit unsigned integer.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UIntTy
impl<'de> Deserialize<'de> for UIntTy
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 Copy for UIntTy
impl Eq for UIntTy
impl StructuralPartialEq for UIntTy
Auto Trait Implementations§
impl Freeze for UIntTy
impl RefUnwindSafe for UIntTy
impl Send for UIntTy
impl Sync for UIntTy
impl Unpin for UIntTy
impl UnwindSafe for UIntTy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more