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

#[derive(Debug, Serialize, Deserialize)]
pub struct JobStatisticsJobNodeMemoryPhysical {
    /// The average physical memory utilization of the job on this node, in KB.
    #[serde(rename = "average")]
    pub average: Option<f32>,
    /// The current physical memory utilization of the job on this node, in KB.
    #[serde(rename = "current")]
    pub current: f32,
    /// The maximum physical memory utilization of the job on this node, in KB.
    #[serde(rename = "maximum")]
    pub maximum: f32,
    /// The minimum physical memory utilization of the job on this node, in KB.
    #[serde(rename = "minimum")]
    pub minimum: f32,
}