pub enum DataType {
Numeric,
Boolean,
Categorical,
Text,
}Expand description
Semantic data type inferred for a column.
Variants§
Numeric
Continuous or integer numeric values (stored as f64).
Boolean
Boolean (true/false) values.
Categorical
Low-cardinality strings (dictionary-encoded).
Text
High-cardinality or free-form text.
Trait Implementations§
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 UnsafeUnpin 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