gcp_bigquery_client/model/
clustering.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct Clustering {
6    /// [Repeated] One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. When you cluster a table using multiple columns, the order of columns you specify is important. The order of the specified columns determines the sort order of the data.
7    #[serde(skip_serializing_if = "Option::is_none")]
8    pub fields: Option<Vec<String>>,
9}