Struct k8s_openapi_ext::corev1::LimitRangeItem
source · [−]pub struct LimitRangeItem {
pub default: Option<BTreeMap<String, Quantity, Global>>,
pub default_request: Option<BTreeMap<String, Quantity, Global>>,
pub max: Option<BTreeMap<String, Quantity, Global>>,
pub max_limit_request_ratio: Option<BTreeMap<String, Quantity, Global>>,
pub min: Option<BTreeMap<String, Quantity, Global>>,
pub type_: String,
}
Expand description
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
Fields
default: Option<BTreeMap<String, Quantity, Global>>
Default resource requirement limit value by resource name if resource limit is omitted.
default_request: Option<BTreeMap<String, Quantity, Global>>
DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
max: Option<BTreeMap<String, Quantity, Global>>
Max usage constraints on this kind by resource name.
max_limit_request_ratio: Option<BTreeMap<String, Quantity, Global>>
MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
min: Option<BTreeMap<String, Quantity, Global>>
Min usage constraints on this kind by resource name.
type_: String
Type of resource that this limit applies to.
Trait Implementations
sourceimpl Clone for LimitRangeItem
impl Clone for LimitRangeItem
sourcefn clone(&self) -> LimitRangeItem
fn clone(&self) -> LimitRangeItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for LimitRangeItem
impl Debug for LimitRangeItem
sourceimpl DeepMerge for LimitRangeItem
impl DeepMerge for LimitRangeItem
sourcefn merge_from(&mut self, other: LimitRangeItem)
fn merge_from(&mut self, other: LimitRangeItem)
Merge
other
into self
.sourceimpl Default for LimitRangeItem
impl Default for LimitRangeItem
sourcefn default() -> LimitRangeItem
fn default() -> LimitRangeItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for LimitRangeItem
impl<'de> Deserialize<'de> for LimitRangeItem
sourcefn deserialize<D>(
deserializer: D
) -> Result<LimitRangeItem, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<LimitRangeItem, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<LimitRangeItem> for LimitRangeItem
impl PartialEq<LimitRangeItem> for LimitRangeItem
sourcefn eq(&self, other: &LimitRangeItem) -> bool
fn eq(&self, other: &LimitRangeItem) -> bool
sourceimpl Serialize for LimitRangeItem
impl Serialize for LimitRangeItem
sourcefn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LimitRangeItem
Auto Trait Implementations
impl RefUnwindSafe for LimitRangeItem
impl Send for LimitRangeItem
impl Sync for LimitRangeItem
impl Unpin for LimitRangeItem
impl UnwindSafe for LimitRangeItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more