Struct k8s_openapi::v1_10::api::core::v1::LimitRangeSpec[][src]

pub struct LimitRangeSpec {
    pub limits: Vec<LimitRangeItem>,
}

LimitRangeSpec defines a min/max usage limit for resources that match on kind.

Fields

Limits is the list of LimitRangeItem objects that are enforced.

Trait Implementations

impl Clone for LimitRangeSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LimitRangeSpec
[src]

Formats the value using the given formatter. Read more

impl Default for LimitRangeSpec
[src]

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

impl PartialEq for LimitRangeSpec
[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 LimitRangeSpec
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for LimitRangeSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations