pub enum ColumnStorageFormat {
Zero,
Constant,
Rowed,
}
Expand description
The possible ways a column can store data
Variants§
Zero
No data is stored currently, but may have data in the future
Constant
A single value is stored
Rowed
A value is stored for every row of the table
Trait Implementations§
Source§impl Clone for ColumnStorageFormat
impl Clone for ColumnStorageFormat
Source§fn clone(&self) -> ColumnStorageFormat
fn clone(&self) -> ColumnStorageFormat
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 ColumnStorageFormat
impl Debug for ColumnStorageFormat
Source§impl PartialEq for ColumnStorageFormat
impl PartialEq for ColumnStorageFormat
impl Copy for ColumnStorageFormat
impl Eq for ColumnStorageFormat
impl StructuralPartialEq for ColumnStorageFormat
Auto Trait Implementations§
impl Freeze for ColumnStorageFormat
impl RefUnwindSafe for ColumnStorageFormat
impl Send for ColumnStorageFormat
impl Sync for ColumnStorageFormat
impl Unpin for ColumnStorageFormat
impl UnwindSafe for ColumnStorageFormat
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