pub struct FluxColumn {
pub name: String,
pub data_type: DataType,
pub group: bool,
pub default_value: String,
}Expand description
Metadata for a column in a Flux table.
Fields§
§name: StringColumn name.
data_type: DataTypeData type of the column.
group: boolWhether this column is part of the group key.
default_value: StringDefault value for missing entries.
Implementations§
Source§impl FluxColumn
impl FluxColumn
Trait Implementations§
Source§impl Clone for FluxColumn
impl Clone for FluxColumn
Source§fn clone(&self) -> FluxColumn
fn clone(&self) -> FluxColumn
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 FluxColumn
impl Debug for FluxColumn
Auto Trait Implementations§
impl Freeze for FluxColumn
impl RefUnwindSafe for FluxColumn
impl Send for FluxColumn
impl Sync for FluxColumn
impl Unpin for FluxColumn
impl UnwindSafe for FluxColumn
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