pub struct SchemaColumn {
pub name: String,
pub storage_format: ColumnStorageFormat,
pub value_kind: ValueKind,
}
Expand description
Representation of a column of a table (data not included)
Fields§
§name: String
The name of the column
storage_format: ColumnStorageFormat
The method in which this column stores data
value_kind: ValueKind
The kind of data this column stores
Trait Implementations§
Source§impl Clone for SchemaColumn
impl Clone for SchemaColumn
Source§fn clone(&self) -> SchemaColumn
fn clone(&self) -> SchemaColumn
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 moreAuto Trait Implementations§
impl Freeze for SchemaColumn
impl RefUnwindSafe for SchemaColumn
impl Send for SchemaColumn
impl Sync for SchemaColumn
impl Unpin for SchemaColumn
impl UnwindSafe for SchemaColumn
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