Struct k8s_openapi::api::flowcontrol::v1beta3::PriorityLevelConfiguration    
source · pub struct PriorityLevelConfiguration {
    pub metadata: ObjectMeta,
    pub spec: Option<PriorityLevelConfigurationSpec>,
    pub status: Option<PriorityLevelConfigurationStatus>,
}Expand description
PriorityLevelConfiguration represents the configuration of a priority level.
Fields§
§metadata: ObjectMetametadata is the standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec: Option<PriorityLevelConfigurationSpec>spec is the specification of the desired behavior of a “request-priority”. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
status: Option<PriorityLevelConfigurationStatus>status is the current status of a “request-priority”. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
Trait Implementations§
source§impl Clone for PriorityLevelConfiguration
 
impl Clone for PriorityLevelConfiguration
source§fn clone(&self) -> PriorityLevelConfiguration
 
fn clone(&self) -> PriorityLevelConfiguration
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 PriorityLevelConfiguration
 
impl Debug for PriorityLevelConfiguration
source§impl DeepMerge for PriorityLevelConfiguration
 
impl DeepMerge for PriorityLevelConfiguration
source§fn merge_from(&mut self, other: Self)
 
fn merge_from(&mut self, other: Self)
Merge 
other into self.source§impl Default for PriorityLevelConfiguration
 
impl Default for PriorityLevelConfiguration
source§fn default() -> PriorityLevelConfiguration
 
fn default() -> PriorityLevelConfiguration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PriorityLevelConfiguration
 
impl<'de> Deserialize<'de> for PriorityLevelConfiguration
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<PriorityLevelConfiguration> for PriorityLevelConfiguration
 
impl PartialEq<PriorityLevelConfiguration> for PriorityLevelConfiguration
source§fn eq(&self, other: &PriorityLevelConfiguration) -> bool
 
fn eq(&self, other: &PriorityLevelConfiguration) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Resource for PriorityLevelConfiguration
 
impl Resource for PriorityLevelConfiguration
source§const API_VERSION: &'static str = "flowcontrol.apiserver.k8s.io/v1beta3"
 
const API_VERSION: &'static str = "flowcontrol.apiserver.k8s.io/v1beta3"
The API version of the resource. This is a composite of 
Resource::GROUP and Resource::VERSION (eg "apiextensions.k8s.io/v1beta1")
or just the version for resources without a group (eg "v1"). Read moresource§const GROUP: &'static str = "flowcontrol.apiserver.k8s.io"
 
const GROUP: &'static str = "flowcontrol.apiserver.k8s.io"
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const URL_PATH_SEGMENT: &'static str = "prioritylevelconfigurations"
 
const URL_PATH_SEGMENT: &'static str = "prioritylevelconfigurations"
The URL path segment used to construct URLs related to this resource. Read more
§type Scope = ClusterResourceScope
 
type Scope = ClusterResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
impl StructuralPartialEq for PriorityLevelConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for PriorityLevelConfiguration
impl Send for PriorityLevelConfiguration
impl Sync for PriorityLevelConfiguration
impl Unpin for PriorityLevelConfiguration
impl UnwindSafe for PriorityLevelConfiguration
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