#[repr(u8)]pub enum FixedLenType {
Null = 31,
Int1 = 48,
Bit = 50,
Int2 = 52,
Int4 = 56,
Datetime4 = 58,
Float4 = 59,
Money = 60,
Datetime = 61,
Float8 = 62,
Money4 = 122,
Int8 = 127,
}Variants§
Null = 31
Int1 = 48
Bit = 50
Int2 = 52
Int4 = 56
Datetime4 = 58
Float4 = 59
Money = 60
Datetime = 61
Float8 = 62
Money4 = 122
Int8 = 127
Trait Implementations§
Source§impl Clone for FixedLenType
impl Clone for FixedLenType
Source§fn clone(&self) -> FixedLenType
fn clone(&self) -> FixedLenType
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 moreSource§impl Debug for FixedLenType
impl Debug for FixedLenType
Source§impl PartialEq for FixedLenType
impl PartialEq for FixedLenType
Source§fn eq(&self, other: &FixedLenType) -> bool
fn eq(&self, other: &FixedLenType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u32> for FixedLenType
impl TryFrom<u32> for FixedLenType
Source§impl TryFrom<u8> for FixedLenType
impl TryFrom<u8> for FixedLenType
impl Copy for FixedLenType
impl Eq for FixedLenType
impl StructuralPartialEq for FixedLenType
Auto Trait Implementations§
impl Freeze for FixedLenType
impl RefUnwindSafe for FixedLenType
impl Send for FixedLenType
impl Sync for FixedLenType
impl Unpin for FixedLenType
impl UnsafeUnpin for FixedLenType
impl UnwindSafe for FixedLenType
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