gcp_bigquery_client/model/
cluster.rs

1//! Message containing the information about one cluster.
2use crate::model::feature_value::FeatureValue;
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct Cluster {
7    /// Values of highly variant features for this cluster.
8    pub feature_values: Option<Vec<FeatureValue>>,
9    /// Centroid id.
10    pub centroid_id: Option<i64>,
11    /// Count of training data rows that were assigned to this cluster.
12    pub count: Option<i64>,
13}