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
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 more
sourceimpl Debug for ResourceQuotaSpec
impl Debug for ResourceQuotaSpec
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<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
sourceimpl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
impl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
sourcefn eq(&self, other: &ResourceQuotaSpec) -> bool
fn eq(&self, other: &ResourceQuotaSpec) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ResourceQuotaSpec) -> bool
fn ne(&self, other: &ResourceQuotaSpec) -> bool
This method tests for !=
.
sourceimpl Serialize for ResourceQuotaSpec
impl Serialize for ResourceQuotaSpec
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more