pub enum DataType {
Boolean,
Int32,
Int64,
Float32,
Float64,
String,
Binary,
Timestamp,
Vector(usize),
Json,
Array(Box<DataType>),
Struct(Vec<(String, DataType)>),
}Expand description
Data type enumeration
Variants§
Boolean
Int32
Int64
Float32
Float64
String
Binary
Timestamp
Vector(usize)
Json
Array(Box<DataType>)
Struct(Vec<(String, DataType)>)
Trait Implementations§
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