Struct roperator::k8s_types::K8sType[][src]

pub struct K8sType {
    pub api_version: &'static str,
    pub kind: &'static str,
    pub plural_kind: &'static str,
}

A basic description of a Kubernetes resource, with just enough information to allow Roperator to communicate with the api server. We use &'static str for all of these so that it’s easy to pass references around without copying. You can define your own k8s types simply by declaring a static, like:

use roperator::k8s_types::K8sType;

#[allow(non_upper_case_globals)]
pub static MyCrd: &K8sType = &K8sType {
    api_version: "example.com/v1",
    kind: "MyCrd",
    plural_kind: "mycrds"
};

If for some reason you need to create K8sTypes at runtime, then you can use a string internment library like string_cache or else you can use the define_type function.

Fields

api_version: &'static strkind: &'static strplural_kind: &'static str

Implementations

impl K8sType[src]

pub fn as_group_and_version(&self) -> (&str, &str)[src]

pub fn group(&self) -> &str[src]

pub fn version(&self) -> &str[src]

pub fn to_type_ref(&self) -> K8sTypeRef<'static>[src]

Trait Implementations

impl Clone for K8sType[src]

impl Debug for K8sType[src]

impl Display for K8sType[src]

impl Eq for K8sType[src]

impl<'a> From<&'_ K8sType> for K8sTypeRef<'a>[src]

impl Hash for K8sType[src]

impl PartialEq<K8sType> for K8sType[src]

impl<'a> PartialEq<K8sType> for K8sTypeRef<'a>[src]

impl StructuralEq for K8sType[src]

impl StructuralPartialEq for K8sType[src]

Auto Trait Implementations

impl RefUnwindSafe for K8sType

impl Send for K8sType

impl Sync for K8sType

impl Unpin for K8sType

impl UnwindSafe for K8sType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.