Trait k8_types::store::StoreSpec[][src]

pub trait StoreSpec: Sized + Default + Debug + Clone {
    type K8Spec: Spec;
    type Status: Sized + Clone + Default + Debug;
    type Key: Ord + Clone + Debug + ToString;
    type Owner: StoreSpec;

    const LABEL: &'static str;

    fn convert_from_k8(
        k8_obj: K8Obj<Self::K8Spec>
    ) -> Result<Option<MetaItem<Self>>, IoError>; }

Associated Types

Associated Constants

Required methods

Implementors