gcp_bigquery_client/model/
explanation.rs

1//! Explanation for a single feature.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct Explanation {
6    /// Full name of the feature. For non-numerical features, will be formatted like .. Overall size of feature name will always be truncated to first 120 characters.
7    pub feature_name: Option<String>,
8    /// Attribution of feature.
9    pub attribution: Option<f64>,
10}