pub struct DeltaClusteringDomainMetadata {
pub clustering_columns: Vec<Vec<String>>,
}Expand description
Configuration for Clustered Tables.
Fields§
§clustering_columns: Vec<Vec<String>>Clustering column paths. Each inner array is a path from root schema to a column.
Trait Implementations§
Source§impl Clone for DeltaClusteringDomainMetadata
impl Clone for DeltaClusteringDomainMetadata
Source§fn clone(&self) -> DeltaClusteringDomainMetadata
fn clone(&self) -> DeltaClusteringDomainMetadata
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 moreSource§impl<'de> Deserialize<'de> for DeltaClusteringDomainMetadata
impl<'de> Deserialize<'de> for DeltaClusteringDomainMetadata
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 DeltaClusteringDomainMetadata
impl StructuralPartialEq for DeltaClusteringDomainMetadata
Auto Trait Implementations§
impl Freeze for DeltaClusteringDomainMetadata
impl RefUnwindSafe for DeltaClusteringDomainMetadata
impl Send for DeltaClusteringDomainMetadata
impl Sync for DeltaClusteringDomainMetadata
impl Unpin for DeltaClusteringDomainMetadata
impl UnsafeUnpin for DeltaClusteringDomainMetadata
impl UnwindSafe for DeltaClusteringDomainMetadata
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