pub struct AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization {
pub cpu: Option<f32>,
pub memory: Option<f32>,
}Expand description
AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
JSON schema
{
"type": "object",
"properties": {
"cpu": {
"description": "The average CPU utilization of the autoscale pool.",
"examples": [
0.0007338008770232183
],
"type": "number",
"format": "float",
"maximum": 1.0,
"minimum": 0.0
},
"memory": {
"description": "The average memory utilization of the autoscale pool.",
"examples": [
0.3588531587713522
],
"type": "number",
"format": "float",
"maximum": 1.0,
"minimum": 0.0
}
}
}Fields§
§cpu: Option<f32>§memory: Option<f32>Trait Implementations§
Source§impl Clone for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl Clone for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
Source§fn clone(
&self,
) -> AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
fn clone( &self, ) -> AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl<'de> Deserialize<'de> for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization> for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl From<&AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization> for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
Source§fn from(
value: &AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization,
) -> Self
fn from( value: &AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl RefUnwindSafe for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl Send for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl Sync for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl Unpin for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl UnsafeUnpin for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
impl UnwindSafe for AutoscalepoolsListResponseAutoscalePoolsItemCurrentUtilization
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more