pub enum KubernetesMapType {
Atomic,
Granular,
}
Expand description
The value of an x-kubernetes-map-type
annotation on a property.
Variants§
Trait Implementations§
source§impl Clone for KubernetesMapType
impl Clone for KubernetesMapType
source§fn clone(&self) -> KubernetesMapType
fn clone(&self) -> KubernetesMapType
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 KubernetesMapType
impl Debug for KubernetesMapType
source§impl Default for KubernetesMapType
impl Default for KubernetesMapType
source§fn default() -> KubernetesMapType
fn default() -> KubernetesMapType
Returns the “default value” for a type. Read more
source§impl Ord for KubernetesMapType
impl Ord for KubernetesMapType
source§fn cmp(&self, other: &KubernetesMapType) -> Ordering
fn cmp(&self, other: &KubernetesMapType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<KubernetesMapType> for KubernetesMapType
impl PartialEq<KubernetesMapType> for KubernetesMapType
source§fn eq(&self, other: &KubernetesMapType) -> bool
fn eq(&self, other: &KubernetesMapType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<KubernetesMapType> for KubernetesMapType
impl PartialOrd<KubernetesMapType> for KubernetesMapType
source§fn partial_cmp(&self, other: &KubernetesMapType) -> Option<Ordering>
fn partial_cmp(&self, other: &KubernetesMapType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more