[][src]Struct k8_obj_metadata::store::MetaItem

pub struct MetaItem<S> where
    S: StoreSpec
{ pub spec: S, pub status: S::Status, pub key: S::Key, pub ctx: MetaItemContext, }

Metadata object. Used to be KVObject int sc-core

Fields

spec: Sstatus: S::Statuskey: S::Keyctx: MetaItemContext

Implementations

impl<S> MetaItem<S> where
    S: StoreSpec
[src]

pub fn new<J>(key: J, spec: S, status: S::Status, ctx: MetaItemContext) -> Self where
    J: Into<S::Key>, 
[src]

pub fn with_ctx(self, ctx: MetaItemContext) -> Self[src]

pub fn key(&self) -> &S::Key[src]

pub fn key_owned(&self) -> S::Key[src]

pub fn my_key(self) -> S::Key[src]

pub fn spec(&self) -> &S[src]

pub fn status(&self) -> &S::Status[src]

pub fn set_status(&mut self, status: S::Status)[src]

pub fn ctx(&self) -> &MetaItemContext[src]

pub fn set_ctx(&mut self, ctx: MetaItemContext)[src]

pub fn parts(self) -> (S::Key, S, MetaItemContext)[src]

pub fn is_owned(&self, uid: &str) -> bool[src]

pub fn with_spec<J>(key: J, spec: S) -> Self where
    J: Into<S::Key>, 
[src]

Trait Implementations

impl<S: Clone> Clone for MetaItem<S> where
    S: StoreSpec,
    S::Status: Clone,
    S::Key: Clone
[src]

impl<S: Debug> Debug for MetaItem<S> where
    S: StoreSpec,
    S::Status: Debug,
    S::Key: Debug
[src]

impl<S> Display for MetaItem<S> where
    S: StoreSpec,
    S::Key: Display
[src]

impl<S> Into<(<S as StoreSpec>::Key, S, <S as StoreSpec>::Status)> for MetaItem<S> where
    S: StoreSpec
[src]

impl<S: PartialEq> PartialEq<MetaItem<S>> for MetaItem<S> where
    S: StoreSpec,
    S::Status: PartialEq,
    S::Key: PartialEq
[src]

impl<S> StructuralPartialEq for MetaItem<S> where
    S: StoreSpec
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for MetaItem<S> where
    S: RefUnwindSafe,
    <S as StoreSpec>::Key: RefUnwindSafe,
    <S as StoreSpec>::Status: RefUnwindSafe
[src]

impl<S> Send for MetaItem<S> where
    S: Send,
    <S as StoreSpec>::Key: Send,
    <S as StoreSpec>::Status: Send
[src]

impl<S> Sync for MetaItem<S> where
    S: Sync,
    <S as StoreSpec>::Key: Sync,
    <S as StoreSpec>::Status: Sync
[src]

impl<S> Unpin for MetaItem<S> where
    S: Unpin,
    <S as StoreSpec>::Key: Unpin,
    <S as StoreSpec>::Status: Unpin
[src]

impl<S> UnwindSafe for MetaItem<S> where
    S: UnwindSafe,
    <S as StoreSpec>::Key: UnwindSafe,
    <S as StoreSpec>::Status: UnwindSafe
[src]

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<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.