pub struct ColumnTag {
pub column_description: Option<ColumnDescription>,
pub column_geographic_role: Option<String>,
}Expand description
A tag for a column in a TagColumnOperation structure. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
Fields§
§column_description: Option<ColumnDescription>A description for a column.
column_geographic_role: Option<String>A geospatial role for a column.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ColumnTag
impl<'de> Deserialize<'de> for ColumnTag
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 ColumnTag
Auto Trait Implementations§
impl Freeze for ColumnTag
impl RefUnwindSafe for ColumnTag
impl Send for ColumnTag
impl Sync for ColumnTag
impl Unpin for ColumnTag
impl UnwindSafe for ColumnTag
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