Struct k8s_openapi::v1_9::api::core::v1::ResourceQuotaStatus[][src]

pub struct ResourceQuotaStatus {
    pub hard: Option<BTreeMap<String, Quantity>>,
    pub used: Option<BTreeMap<String, Quantity>>,
}

ResourceQuotaStatus defines the enforced hard limits and observed use.

Fields

Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

Used is the current observed total usage of the resource in the namespace.

Trait Implementations

impl Clone for ResourceQuotaStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResourceQuotaStatus
[src]

Formats the value using the given formatter. Read more

impl Default for ResourceQuotaStatus
[src]

Returns the "default value" for a type. Read more

impl PartialEq for ResourceQuotaStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ResourceQuotaStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations