pub struct Column {
pub name: String,
pub display_name: String,
pub base_type: String,
pub effective_type: Option<String>,
pub semantic_type: Option<String>,
pub field_ref: Option<Value>,
}
Expand description
Column metadata
Fields§
§name: String
Column name
display_name: String
Display name
base_type: String
Base type (e.g., “type/Text”, “type/Integer”)
effective_type: Option<String>
Effective type
semantic_type: Option<String>
Semantic type
field_ref: Option<Value>
Field reference
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Column
impl<'de> Deserialize<'de> for Column
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Column
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
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