#[non_exhaustive]pub enum ColumnRole {
Identifier,
Dimension,
Measure,
Timestamp,
Sensitive,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for ColumnRole
impl Clone for ColumnRole
Source§fn clone(&self) -> ColumnRole
fn clone(&self) -> ColumnRole
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ColumnRole
Source§impl Debug for ColumnRole
impl Debug for ColumnRole
Source§impl<'de> Deserialize<'de> for ColumnRole
impl<'de> Deserialize<'de> for ColumnRole
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 Eq for ColumnRole
Source§impl Hash for ColumnRole
impl Hash for ColumnRole
Source§impl PartialEq for ColumnRole
impl PartialEq for ColumnRole
Source§impl Serialize for ColumnRole
impl Serialize for ColumnRole
impl StructuralPartialEq for ColumnRole
Auto Trait Implementations§
impl Freeze for ColumnRole
impl RefUnwindSafe for ColumnRole
impl Send for ColumnRole
impl Sync for ColumnRole
impl Unpin for ColumnRole
impl UnsafeUnpin for ColumnRole
impl UnwindSafe for ColumnRole
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