pub enum UnsignedLongDatatype {
UnsignedLong,
UnsignedInt(UnsignedIntDatatype),
}Expand description
UnsignedLong datatype variants.
Variants§
UnsignedLong
UnsignedInt(UnsignedIntDatatype)
Implementations§
Trait Implementations§
Source§impl Clone for UnsignedLongDatatype
impl Clone for UnsignedLongDatatype
Source§fn clone(&self) -> UnsignedLongDatatype
fn clone(&self) -> UnsignedLongDatatype
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 UnsignedLongDatatype
impl Debug for UnsignedLongDatatype
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<UnsignedLongDatatype> for Datatype
impl From<UnsignedLongDatatype> for Datatype
Source§fn from(value: UnsignedLongDatatype) -> Self
fn from(value: UnsignedLongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedLongDatatype> for DecimalDatatype
impl From<UnsignedLongDatatype> for DecimalDatatype
Source§fn from(value: UnsignedLongDatatype) -> Self
fn from(value: UnsignedLongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedLongDatatype> for IntegerDatatype
impl From<UnsignedLongDatatype> for IntegerDatatype
Source§fn from(value: UnsignedLongDatatype) -> Self
fn from(value: UnsignedLongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedLongDatatype> for NonNegativeIntegerDatatype
impl From<UnsignedLongDatatype> for NonNegativeIntegerDatatype
Source§fn from(value: UnsignedLongDatatype) -> Self
fn from(value: UnsignedLongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedShortDatatype> for UnsignedLongDatatype
impl From<UnsignedShortDatatype> for UnsignedLongDatatype
Source§fn from(value: UnsignedShortDatatype) -> Self
fn from(value: UnsignedShortDatatype) -> Self
Converts to this type from the input type.
Source§impl Hash for UnsignedLongDatatype
impl Hash for UnsignedLongDatatype
Source§impl Ord for UnsignedLongDatatype
impl Ord for UnsignedLongDatatype
Source§fn cmp(&self, other: &UnsignedLongDatatype) -> Ordering
fn cmp(&self, other: &UnsignedLongDatatype) -> 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 UnsignedLongDatatype
impl PartialEq for UnsignedLongDatatype
Source§impl PartialOrd for UnsignedLongDatatype
impl PartialOrd for UnsignedLongDatatype
Source§impl TryFrom<Datatype> for UnsignedLongDatatype
impl TryFrom<Datatype> for UnsignedLongDatatype
Source§impl TryFrom<DecimalDatatype> for UnsignedLongDatatype
impl TryFrom<DecimalDatatype> for UnsignedLongDatatype
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 UnsignedLongDatatype
impl TryFrom<IntegerDatatype> for UnsignedLongDatatype
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 UnsignedLongDatatype
impl TryFrom<NonNegativeIntegerDatatype> for UnsignedLongDatatype
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<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.
Source§impl TryFrom<UnsignedLongDatatype> for UnsignedShortDatatype
impl TryFrom<UnsignedLongDatatype> for UnsignedShortDatatype
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 UnsignedLongDatatype
impl Eq for UnsignedLongDatatype
impl StructuralPartialEq for UnsignedLongDatatype
Auto Trait Implementations§
impl Freeze for UnsignedLongDatatype
impl RefUnwindSafe for UnsignedLongDatatype
impl Send for UnsignedLongDatatype
impl Sync for UnsignedLongDatatype
impl Unpin for UnsignedLongDatatype
impl UnwindSafe for UnsignedLongDatatype
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