gcp_bigquery_client/model/row.rs
1//! A single row in the confusion matrix.
2use crate::model::entry::Entry;
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct Row {
7 /// The original label of this row.
8 pub actual_label: Option<String>,
9 /// Info describing predicted label distribution.
10 pub entries: Option<Vec<Entry>>,
11}