Struct k8s_openapi_ext::corev1::ResourceQuotaSpec  
source · [−]pub struct ResourceQuotaSpec {
    pub hard: Option<BTreeMap<String, Quantity, Global>>,
    pub scope_selector: Option<ScopeSelector>,
    pub scopes: Option<Vec<String, Global>>,
}Expand description
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
Fields
hard: Option<BTreeMap<String, Quantity, Global>>hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
scope_selector: Option<ScopeSelector>scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
scopes: Option<Vec<String, Global>>A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
Trait Implementations
sourceimpl Clone for ResourceQuotaSpec
 
impl Clone for ResourceQuotaSpec
sourcefn clone(&self) -> ResourceQuotaSpec
 
fn clone(&self) -> ResourceQuotaSpec
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 ResourceQuotaSpec
 
impl Debug for ResourceQuotaSpec
sourceimpl DeepMerge for ResourceQuotaSpec
 
impl DeepMerge for ResourceQuotaSpec
sourcefn merge_from(&mut self, other: ResourceQuotaSpec)
 
fn merge_from(&mut self, other: ResourceQuotaSpec)
Merge 
other into self.sourceimpl Default for ResourceQuotaSpec
 
impl Default for ResourceQuotaSpec
sourcefn default() -> ResourceQuotaSpec
 
fn default() -> ResourceQuotaSpec
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ResourceQuotaSpec
 
impl<'de> Deserialize<'de> for ResourceQuotaSpec
sourcefn deserialize<D>(
    deserializer: D
) -> Result<ResourceQuotaSpec, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(
    deserializer: D
) -> Result<ResourceQuotaSpec, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
 
impl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
sourcefn eq(&self, other: &ResourceQuotaSpec) -> bool
 
fn eq(&self, other: &ResourceQuotaSpec) -> bool
sourceimpl Serialize for ResourceQuotaSpec
 
impl Serialize for ResourceQuotaSpec
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 ResourceQuotaSpec
Auto Trait Implementations
impl RefUnwindSafe for ResourceQuotaSpec
impl Send for ResourceQuotaSpec
impl Sync for ResourceQuotaSpec
impl Unpin for ResourceQuotaSpec
impl UnwindSafe for ResourceQuotaSpec
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