gcp_bigquery_client/model/
row.rs

1
2
3
4
5
6
7
8
9
10
11
//! A single row in the confusion matrix.
use crate::model::entry::Entry;

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Row {
    /// The original label of this row.
    pub actual_label: Option<String>,
    /// Info describing predicted label distribution.
    pub entries: Option<Vec<Entry>>,
}