pub struct Clustering {
pub fields: Option<Vec<String>>,
}Expand description
Configures table clustering.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fields: Option<Vec<String>>One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see Introduction to clustered tables.
Trait Implementations§
Source§impl Clone for Clustering
impl Clone for Clustering
Source§fn clone(&self) -> Clustering
fn clone(&self) -> Clustering
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 moreSource§impl Debug for Clustering
impl Debug for Clustering
Source§impl Default for Clustering
impl Default for Clustering
Source§fn default() -> Clustering
fn default() -> Clustering
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Clustering
impl<'de> Deserialize<'de> for Clustering
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
Source§impl Serialize for Clustering
impl Serialize for Clustering
impl Part for Clustering
Auto Trait Implementations§
impl Freeze for Clustering
impl RefUnwindSafe for Clustering
impl Send for Clustering
impl Sync for Clustering
impl Unpin for Clustering
impl UnwindSafe for Clustering
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