Struct kube_core::gvk::GroupVersionKind
source · pub struct GroupVersionKind {
pub group: String,
pub version: String,
pub kind: String,
}
Expand description
Core information about an API Resource.
Fields§
§group: String
API group
version: String
Version
kind: String
Kind
Implementations§
source§impl GroupVersionKind
impl GroupVersionKind
sourcepub fn api_version(&self) -> String
pub fn api_version(&self) -> String
Generate the apiVersion string used in a kind’s yaml
Trait Implementations§
source§impl Clone for GroupVersionKind
impl Clone for GroupVersionKind
source§fn clone(&self) -> GroupVersionKind
fn clone(&self) -> GroupVersionKind
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 GroupVersionKind
impl Debug for GroupVersionKind
source§impl<'de> Deserialize<'de> for GroupVersionKind
impl<'de> Deserialize<'de> for GroupVersionKind
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 From<ObjectReference> for GroupVersionKind
impl From<ObjectReference> for GroupVersionKind
source§fn from(value: ObjectReference) -> Self
fn from(value: ObjectReference) -> Self
Converts to this type from the input type.
source§impl From<OwnerReference> for GroupVersionKind
impl From<OwnerReference> for GroupVersionKind
source§fn from(value: OwnerReference) -> Self
fn from(value: OwnerReference) -> Self
Converts to this type from the input type.
source§impl Hash for GroupVersionKind
impl Hash for GroupVersionKind
source§impl PartialEq for GroupVersionKind
impl PartialEq for GroupVersionKind
source§impl Serialize for GroupVersionKind
impl Serialize for GroupVersionKind
source§impl TryFrom<&TypeMeta> for GroupVersionKind
impl TryFrom<&TypeMeta> for GroupVersionKind
source§impl TryFrom<TypeMeta> for GroupVersionKind
impl TryFrom<TypeMeta> for GroupVersionKind
impl Eq for GroupVersionKind
impl StructuralPartialEq for GroupVersionKind
Auto Trait Implementations§
impl Freeze for GroupVersionKind
impl RefUnwindSafe for GroupVersionKind
impl Send for GroupVersionKind
impl Sync for GroupVersionKind
impl Unpin for GroupVersionKind
impl UnwindSafe for GroupVersionKind
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.