[][src]Struct k8s_openapi::api::autoscaling::v2beta2::MetricValueStatus

pub struct MetricValueStatus {
    pub average_utilization: Option<i32>,
    pub average_value: Option<Quantity>,
    pub value: Option<Quantity>,
}

MetricValueStatus holds the current value for a metric

Fields

average_utilization: Option<i32>

currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

average_value: Option<Quantity>

averageValue is the current value of the average of the metric across all relevant pods (as a quantity)

value: Option<Quantity>

value is the current value of the metric (as a quantity).

Trait Implementations

impl Clone for MetricValueStatus[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<MetricValueStatus> for MetricValueStatus[src]

impl Default for MetricValueStatus[src]

impl Debug for MetricValueStatus[src]

impl Serialize for MetricValueStatus[src]

impl<'de> Deserialize<'de> for MetricValueStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]