#[non_exhaustive]#[repr(i32)]pub enum StorageType {
Show 20 variants
Invalid = -1,
Int = 0,
Int64 = 1,
Float = 2,
Float64 = 3,
String = 4,
Uint8 = 5,
Int8 = 6,
Int16 = 7,
Dictionary = 8,
IntArray = 9,
Int64Array = 10,
FloatArray = 11,
Float64Array = 12,
StringArray = 13,
Uint8Array = 14,
Int8Array = 15,
Int16Array = 16,
DictionaryArray = 17,
Max = 18,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Invalid = -1
Int = 0
Int64 = 1
Float = 2
Float64 = 3
String = 4
Uint8 = 5
Int8 = 6
Int16 = 7
Dictionary = 8
IntArray = 9
Int64Array = 10
FloatArray = 11
Float64Array = 12
StringArray = 13
Uint8Array = 14
Int8Array = 15
Int16Array = 16
DictionaryArray = 17
Max = 18
Trait Implementations§
Source§impl Clone for StorageType
impl Clone for StorageType
Source§fn clone(&self) -> StorageType
fn clone(&self) -> StorageType
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 StorageType
impl Debug for StorageType
Source§impl Hash for StorageType
impl Hash for StorageType
Source§impl PartialEq for StorageType
impl PartialEq for StorageType
impl Copy for StorageType
impl Eq for StorageType
impl StructuralPartialEq for StorageType
Auto Trait Implementations§
impl Freeze for StorageType
impl RefUnwindSafe for StorageType
impl Send for StorageType
impl Sync for StorageType
impl Unpin for StorageType
impl UnwindSafe for StorageType
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