pub struct ArrayFieldDef {
pub graphql_name: String,
pub column: String,
pub field_type: ArrayFieldType,
pub description: Option<String>,
}Expand description
One field inside an Array dimension, backed by a ClickHouse Array(String) column.
Fields§
§graphql_name: String§column: String§field_type: ArrayFieldType§description: Option<String>Trait Implementations§
Source§impl Clone for ArrayFieldDef
impl Clone for ArrayFieldDef
Source§fn clone(&self) -> ArrayFieldDef
fn clone(&self) -> ArrayFieldDef
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 ArrayFieldDef
impl RefUnwindSafe for ArrayFieldDef
impl Send for ArrayFieldDef
impl Sync for ArrayFieldDef
impl Unpin for ArrayFieldDef
impl UnsafeUnpin for ArrayFieldDef
impl UnwindSafe for ArrayFieldDef
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