#[repr(u8)]pub enum DataTypePrefix {
Show 23 variants
Illegal = 0,
Int32 = 105,
Int64 = 73,
Float = 102,
BinFloat = 103,
Complex = 120,
BinComplex = 121,
True = 84,
False = 70,
None = 78,
StopIter = 83,
Ref = 114,
Long = 108,
Str = 115,
ShortAscii = 250,
ShortAsciiInterned = 218,
Unicode = 117,
Interned = 116,
SmallTuple = 41,
Tuple = 40,
Code = 227,
Builtin = 98,
Nat = 110,
}Variants§
Illegal = 0
Int32 = 105
Int64 = 73
Float = 102
BinFloat = 103
Complex = 120
BinComplex = 121
True = 84
False = 70
None = 78
StopIter = 83
Ref = 114
Long = 108
Str = 115
ShortAscii = 250
ShortAsciiInterned = 218
Unicode = 117
Interned = 116
SmallTuple = 41
Tuple = 40
Code = 227
Builtin = 98
Nat = 110
Implementations§
Trait Implementations§
Source§impl Clone for DataTypePrefix
impl Clone for DataTypePrefix
Source§fn clone(&self) -> DataTypePrefix
fn clone(&self) -> DataTypePrefix
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 DataTypePrefix
impl Debug for DataTypePrefix
Source§impl Display for DataTypePrefix
impl Display for DataTypePrefix
Source§impl From<u8> for DataTypePrefix
impl From<u8> for DataTypePrefix
Source§impl Hash for DataTypePrefix
impl Hash for DataTypePrefix
Source§impl PartialEq for DataTypePrefix
impl PartialEq for DataTypePrefix
impl Copy for DataTypePrefix
impl Eq for DataTypePrefix
impl StructuralPartialEq for DataTypePrefix
Auto Trait Implementations§
impl Freeze for DataTypePrefix
impl RefUnwindSafe for DataTypePrefix
impl Send for DataTypePrefix
impl Sync for DataTypePrefix
impl Unpin for DataTypePrefix
impl UnwindSafe for DataTypePrefix
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