pub struct KubernetesGroupKindVersion {
pub group: String,
pub kind: String,
pub version: String,
}
Expand description
The value of an x-kubernetes-group-version-kind
annotation on a type or an operation.
Fields§
§group: String
§kind: String
§version: String
Trait Implementations§
source§impl Clone for KubernetesGroupKindVersion
impl Clone for KubernetesGroupKindVersion
source§fn clone(&self) -> KubernetesGroupKindVersion
fn clone(&self) -> KubernetesGroupKindVersion
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 KubernetesGroupKindVersion
impl Debug for KubernetesGroupKindVersion
source§impl Ord for KubernetesGroupKindVersion
impl Ord for KubernetesGroupKindVersion
source§impl PartialEq for KubernetesGroupKindVersion
impl PartialEq for KubernetesGroupKindVersion
source§fn eq(&self, other: &KubernetesGroupKindVersion) -> bool
fn eq(&self, other: &KubernetesGroupKindVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for KubernetesGroupKindVersion
impl PartialOrd for KubernetesGroupKindVersion
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 moreimpl Eq for KubernetesGroupKindVersion
impl StructuralPartialEq for KubernetesGroupKindVersion
Auto Trait Implementations§
impl Freeze for KubernetesGroupKindVersion
impl RefUnwindSafe for KubernetesGroupKindVersion
impl Send for KubernetesGroupKindVersion
impl Sync for KubernetesGroupKindVersion
impl Unpin for KubernetesGroupKindVersion
impl UnwindSafe for KubernetesGroupKindVersion
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