[][src]Trait kube_runtime::reflector::RuntimeResource

pub trait RuntimeResource {
    type State: Debug + PartialEq + Eq + Hash + Clone;
    pub fn group(state: &Self::State) -> &str;
pub fn version(state: &Self::State) -> &str;
pub fn kind(state: &Self::State) -> &str; }

A Kubernetes type that is known at runtime

Associated Types

Loading content...

Required methods

pub fn group(state: &Self::State) -> &str[src]

pub fn version(state: &Self::State) -> &str[src]

pub fn kind(state: &Self::State) -> &str[src]

Loading content...

Implementors

impl RuntimeResource for ErasedResource[src]

type State = ErasedResourceState

impl<K: Resource> RuntimeResource for K[src]

All Resources are also known at runtime

type State = ()

All required state is provided at build time

Loading content...