1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct SummaryProtocolStatsProtocolStatsOnefs {
    /// OneFS throughput in MB/s in.
    #[serde(rename = "in")]
    pub _in: f32,
    /// OneFS throughput in MB/s out.
    #[serde(rename = "out")]
    pub out: f32,
    /// OneFS throughput in MB/s total.
    #[serde(rename = "total")]
    pub total: f32,
}