Struct k8s_openapi::api::core::v1::ResourceQuotaSpec
source · pub struct ResourceQuotaSpec {
pub hard: Option<BTreeMap<String, Quantity>>,
pub scope_selector: Option<ScopeSelector>,
pub scopes: Option<Vec<String>>,
}
Expand description
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
Fields§
§hard: Option<BTreeMap<String, Quantity>>
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>>
A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
Trait Implementations§
source§impl Clone for ResourceQuotaSpec
impl Clone for ResourceQuotaSpec
source§fn clone(&self) -> ResourceQuotaSpec
fn clone(&self) -> ResourceQuotaSpec
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ResourceQuotaSpec
impl Debug for ResourceQuotaSpec
source§impl DeepMerge for ResourceQuotaSpec
impl DeepMerge for ResourceQuotaSpec
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ResourceQuotaSpec
impl Default for ResourceQuotaSpec
source§fn default() -> ResourceQuotaSpec
fn default() -> ResourceQuotaSpec
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ResourceQuotaSpec
impl<'de> Deserialize<'de> for ResourceQuotaSpec
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ResourceQuotaSpec
impl PartialEq for ResourceQuotaSpec
source§impl Serialize for ResourceQuotaSpec
impl Serialize for ResourceQuotaSpec
impl StructuralPartialEq for ResourceQuotaSpec
Auto Trait Implementations§
impl Freeze for ResourceQuotaSpec
impl RefUnwindSafe for ResourceQuotaSpec
impl Send for ResourceQuotaSpec
impl Sync for ResourceQuotaSpec
impl Unpin for ResourceQuotaSpec
impl UnwindSafe for ResourceQuotaSpec
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)