pub trait Spec: Sized + Debug + Clone + Default + Serialize + DeserializeOwned + Send + Sync {
type Status: Status;
type Header: Header;
const NAME_SPACED: bool = true;
fn metadata() -> &'static Crd;
fn label() -> &'static str { ... }
fn api_version() -> String { ... }
fn kind() -> String { ... }
fn make_same(&mut self, _other: &Self) { ... }
}Expand description
Kubernetes Spec
Required Associated Types
Provided Associated Constants
const NAME_SPACED: bool = true
const NAME_SPACED: bool = true
if true, spec is namespaced