pub enum DataType {
Show 35 variants
Unknown = 0,
Int8 = 1,
Int16 = 2,
Int32 = 3,
Int64 = 4,
UInt8 = 5,
UInt16 = 6,
UInt32 = 7,
UInt64 = 8,
Float = 9,
Double = 10,
Boolean = 11,
String = 12,
DateTime = 13,
Text = 14,
UUID = 15,
DataSet = 16,
Bytes = 17,
File = 18,
Template = 19,
PropertySet = 20,
PropertySetList = 21,
Int8Array = 22,
Int16Array = 23,
Int32Array = 24,
Int64Array = 25,
UInt8Array = 26,
UInt16Array = 27,
UInt32Array = 28,
UInt64Array = 29,
FloatArray = 30,
DoubleArray = 31,
BooleanArray = 32,
StringArray = 33,
DateTimeArray = 34,
}
Variants§
Unknown = 0
Int8 = 1
Int16 = 2
Int32 = 3
Int64 = 4
UInt8 = 5
UInt16 = 6
UInt32 = 7
UInt64 = 8
Float = 9
Double = 10
Boolean = 11
String = 12
DateTime = 13
Text = 14
UUID = 15
DataSet = 16
Bytes = 17
File = 18
Template = 19
PropertySet = 20
PropertySetList = 21
Int8Array = 22
Int16Array = 23
Int32Array = 24
Int64Array = 25
UInt8Array = 26
UInt16Array = 27
UInt32Array = 28
UInt64Array = 29
FloatArray = 30
DoubleArray = 31
BooleanArray = 32
StringArray = 33
DateTimeArray = 34
Trait Implementations§
Source§impl Enum for DataType
impl Enum for DataType
Source§impl EnumFull for DataType
impl EnumFull for DataType
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
impl Copy for DataType
impl Eq for DataType
impl StructuralPartialEq for DataType
Auto Trait Implementations§
impl Freeze for DataType
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
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