pub enum UnsignedIntDatatype {
UnsignedInt,
UnsignedShort(UnsignedShortDatatype),
}
Expand description
UnsignedInt
datatype variants.
Variants§
UnsignedInt
UnsignedShort(UnsignedShortDatatype)
Implementations§
Trait Implementations§
Source§impl Clone for UnsignedIntDatatype
impl Clone for UnsignedIntDatatype
Source§fn clone(&self) -> UnsignedIntDatatype
fn clone(&self) -> UnsignedIntDatatype
Returns a duplicate of the value. Read more
1.0.0 · 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 UnsignedIntDatatype
impl Debug for UnsignedIntDatatype
Source§impl From<UnsignedIntDatatype> for Datatype
impl From<UnsignedIntDatatype> for Datatype
Source§fn from(value: UnsignedIntDatatype) -> Self
fn from(value: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedIntDatatype> for DecimalDatatype
impl From<UnsignedIntDatatype> for DecimalDatatype
Source§fn from(value: UnsignedIntDatatype) -> Self
fn from(value: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedIntDatatype> for IntegerDatatype
impl From<UnsignedIntDatatype> for IntegerDatatype
Source§fn from(value: UnsignedIntDatatype) -> Self
fn from(value: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedIntDatatype> for NonNegativeIntegerDatatype
impl From<UnsignedIntDatatype> for NonNegativeIntegerDatatype
Source§fn from(value: UnsignedIntDatatype) -> Self
fn from(value: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedIntDatatype> for UnsignedLongDatatype
impl From<UnsignedIntDatatype> for UnsignedLongDatatype
Source§fn from(value: UnsignedIntDatatype) -> Self
fn from(value: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedShortDatatype> for UnsignedIntDatatype
impl From<UnsignedShortDatatype> for UnsignedIntDatatype
Source§fn from(value: UnsignedShortDatatype) -> Self
fn from(value: UnsignedShortDatatype) -> Self
Converts to this type from the input type.
Source§impl Hash for UnsignedIntDatatype
impl Hash for UnsignedIntDatatype
Source§impl Ord for UnsignedIntDatatype
impl Ord for UnsignedIntDatatype
Source§fn cmp(&self, other: &UnsignedIntDatatype) -> Ordering
fn cmp(&self, other: &UnsignedIntDatatype) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnsignedIntDatatype
impl PartialEq for UnsignedIntDatatype
Source§impl PartialOrd for UnsignedIntDatatype
impl PartialOrd for UnsignedIntDatatype
Source§impl TryFrom<Datatype> for UnsignedIntDatatype
impl TryFrom<Datatype> for UnsignedIntDatatype
Source§impl TryFrom<DecimalDatatype> for UnsignedIntDatatype
impl TryFrom<DecimalDatatype> for UnsignedIntDatatype
Source§type Error = DecimalDatatype
type Error = DecimalDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: DecimalDatatype) -> Result<Self, DecimalDatatype>
fn try_from(value: DecimalDatatype) -> Result<Self, DecimalDatatype>
Performs the conversion.
Source§impl TryFrom<IntegerDatatype> for UnsignedIntDatatype
impl TryFrom<IntegerDatatype> for UnsignedIntDatatype
Source§type Error = IntegerDatatype
type Error = IntegerDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: IntegerDatatype) -> Result<Self, IntegerDatatype>
fn try_from(value: IntegerDatatype) -> Result<Self, IntegerDatatype>
Performs the conversion.
Source§impl TryFrom<NonNegativeIntegerDatatype> for UnsignedIntDatatype
impl TryFrom<NonNegativeIntegerDatatype> for UnsignedIntDatatype
Source§type Error = NonNegativeIntegerDatatype
type Error = NonNegativeIntegerDatatype
The type returned in the event of a conversion error.
Source§fn try_from(
value: NonNegativeIntegerDatatype,
) -> Result<Self, NonNegativeIntegerDatatype>
fn try_from( value: NonNegativeIntegerDatatype, ) -> Result<Self, NonNegativeIntegerDatatype>
Performs the conversion.
Source§impl TryFrom<UnsignedIntDatatype> for UnsignedShortDatatype
impl TryFrom<UnsignedIntDatatype> for UnsignedShortDatatype
Source§type Error = UnsignedIntDatatype
type Error = UnsignedIntDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: UnsignedIntDatatype) -> Result<Self, UnsignedIntDatatype>
fn try_from(value: UnsignedIntDatatype) -> Result<Self, UnsignedIntDatatype>
Performs the conversion.
Source§impl TryFrom<UnsignedLongDatatype> for UnsignedIntDatatype
impl TryFrom<UnsignedLongDatatype> for UnsignedIntDatatype
Source§type Error = UnsignedLongDatatype
type Error = UnsignedLongDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: UnsignedLongDatatype) -> Result<Self, UnsignedLongDatatype>
fn try_from(value: UnsignedLongDatatype) -> Result<Self, UnsignedLongDatatype>
Performs the conversion.
impl Copy for UnsignedIntDatatype
impl Eq for UnsignedIntDatatype
impl StructuralPartialEq for UnsignedIntDatatype
Auto Trait Implementations§
impl Freeze for UnsignedIntDatatype
impl RefUnwindSafe for UnsignedIntDatatype
impl Send for UnsignedIntDatatype
impl Sync for UnsignedIntDatatype
impl Unpin for UnsignedIntDatatype
impl UnwindSafe for UnsignedIntDatatype
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