pub enum LongDatatype {
Long,
Int(IntDatatype),
}Expand description
Long datatype variants.
Variants§
Long
Int(IntDatatype)
Implementations§
Trait Implementations§
Source§impl Clone for LongDatatype
impl Clone for LongDatatype
Source§fn clone(&self) -> LongDatatype
fn clone(&self) -> LongDatatype
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 LongDatatype
impl Debug for LongDatatype
Source§impl From<IntDatatype> for LongDatatype
impl From<IntDatatype> for LongDatatype
Source§fn from(value: IntDatatype) -> Self
fn from(value: IntDatatype) -> Self
Converts to this type from the input type.
Source§impl From<LongDatatype> for Datatype
impl From<LongDatatype> for Datatype
Source§fn from(value: LongDatatype) -> Self
fn from(value: LongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<LongDatatype> for DecimalDatatype
impl From<LongDatatype> for DecimalDatatype
Source§fn from(value: LongDatatype) -> Self
fn from(value: LongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<LongDatatype> for IntegerDatatype
impl From<LongDatatype> for IntegerDatatype
Source§fn from(value: LongDatatype) -> Self
fn from(value: LongDatatype) -> Self
Converts to this type from the input type.
Source§impl From<ShortDatatype> for LongDatatype
impl From<ShortDatatype> for LongDatatype
Source§fn from(value: ShortDatatype) -> Self
fn from(value: ShortDatatype) -> Self
Converts to this type from the input type.
Source§impl Hash for LongDatatype
impl Hash for LongDatatype
Source§impl Ord for LongDatatype
impl Ord for LongDatatype
Source§fn cmp(&self, other: &LongDatatype) -> Ordering
fn cmp(&self, other: &LongDatatype) -> 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 LongDatatype
impl PartialEq for LongDatatype
Source§impl PartialOrd for LongDatatype
impl PartialOrd for LongDatatype
Source§impl TryFrom<Datatype> for LongDatatype
impl TryFrom<Datatype> for LongDatatype
Source§impl TryFrom<DecimalDatatype> for LongDatatype
impl TryFrom<DecimalDatatype> for LongDatatype
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 LongDatatype
impl TryFrom<IntegerDatatype> for LongDatatype
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<LongDatatype> for IntDatatype
impl TryFrom<LongDatatype> for IntDatatype
Source§type Error = LongDatatype
type Error = LongDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: LongDatatype) -> Result<Self, LongDatatype>
fn try_from(value: LongDatatype) -> Result<Self, LongDatatype>
Performs the conversion.
Source§impl TryFrom<LongDatatype> for ShortDatatype
impl TryFrom<LongDatatype> for ShortDatatype
Source§type Error = LongDatatype
type Error = LongDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: LongDatatype) -> Result<Self, LongDatatype>
fn try_from(value: LongDatatype) -> Result<Self, LongDatatype>
Performs the conversion.
impl Copy for LongDatatype
impl Eq for LongDatatype
impl StructuralPartialEq for LongDatatype
Auto Trait Implementations§
impl Freeze for LongDatatype
impl RefUnwindSafe for LongDatatype
impl Send for LongDatatype
impl Sync for LongDatatype
impl Unpin for LongDatatype
impl UnwindSafe for LongDatatype
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