Struct k8_types::store::MetaItem [−][src]
pub struct MetaItem<S> where
S: StoreSpec, { pub spec: S, pub status: S::Status, pub key: S::Key, pub ctx: MetaItemContext, }
Expand description
Metadata object. Used to be KVObject int sc-core
Fields
spec: Sstatus: S::Statuskey: S::Keyctx: MetaItemContextImplementations
impl<S> MetaItem<S> where
S: StoreSpec, [src]
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]
J: Into<S::Key>,
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]
J: Into<S::Key>,
Trait Implementations
impl<S: PartialEq> PartialEq<MetaItem<S>> for MetaItem<S> where
S: StoreSpec,
S::Status: PartialEq,
S::Key: PartialEq, [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]
S: StoreSpec,
Auto Trait Implementations
impl<S> RefUnwindSafe for MetaItem<S> where
S: RefUnwindSafe,
<S as StoreSpec>::Key: RefUnwindSafe,
<S as StoreSpec>::Status: RefUnwindSafe,
S: RefUnwindSafe,
<S as StoreSpec>::Key: RefUnwindSafe,
<S as StoreSpec>::Status: RefUnwindSafe,
impl<S> Send for MetaItem<S> where
S: Send,
<S as StoreSpec>::Key: Send,
<S as StoreSpec>::Status: Send,
S: Send,
<S as StoreSpec>::Key: Send,
<S as StoreSpec>::Status: Send,
impl<S> Sync for MetaItem<S> where
S: Sync,
<S as StoreSpec>::Key: Sync,
<S as StoreSpec>::Status: Sync,
S: Sync,
<S as StoreSpec>::Key: Sync,
<S as StoreSpec>::Status: Sync,
impl<S> Unpin for MetaItem<S> where
S: Unpin,
<S as StoreSpec>::Key: Unpin,
<S as StoreSpec>::Status: Unpin,
S: Unpin,
<S as StoreSpec>::Key: Unpin,
<S as StoreSpec>::Status: Unpin,
impl<S> UnwindSafe for MetaItem<S> where
S: UnwindSafe,
<S as StoreSpec>::Key: UnwindSafe,
<S as StoreSpec>::Status: UnwindSafe,
S: UnwindSafe,
<S as StoreSpec>::Key: UnwindSafe,
<S as StoreSpec>::Status: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more