[]Struct fluvio_sc::dispatcher::k8::app::core::metadata::store::MetaItem

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

Metadata object. Used to be KVObject int sc-core

Fields

spec: Sstatus: <S as StoreSpec>::Statuskey: <S as StoreSpec>::Keyctx: MetaItemContext

Implementations

impl<S> MetaItem<S> where
    S: StoreSpec

pub fn new<J>(
    key: J,
    spec: S,
    status: <S as StoreSpec>::Status,
    ctx: MetaItemContext
) -> MetaItem<S> where
    J: Into<<S as StoreSpec>::Key>, 

pub fn with_ctx(self, ctx: MetaItemContext) -> MetaItem<S>

pub fn key(&self) -> &<S as StoreSpec>::Key

pub fn key_owned(&self) -> <S as StoreSpec>::Key

pub fn my_key(self) -> <S as StoreSpec>::Key

pub fn spec(&self) -> &S

pub fn status(&self) -> &<S as StoreSpec>::Status

pub fn set_status(&mut self, status: <S as StoreSpec>::Status)

pub fn ctx(&self) -> &MetaItemContext

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

pub fn parts(self) -> (<S as StoreSpec>::Key, S, MetaItemContext)

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

pub fn with_spec<J>(key: J, spec: S) -> MetaItem<S> where
    J: Into<<S as StoreSpec>::Key>, 

Trait Implementations

impl<S> Clone for MetaItem<S> where
    S: Clone + StoreSpec,
    <S as StoreSpec>::Status: Clone,
    <S as StoreSpec>::Key: Clone

impl<S> Debug for MetaItem<S> where
    S: Debug + StoreSpec,
    <S as StoreSpec>::Status: Debug,
    <S as StoreSpec>::Key: Debug

impl<S> Display for MetaItem<S> where
    S: StoreSpec,
    <S as StoreSpec>::Key: Display

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

impl<S> PartialEq<MetaItem<S>> for MetaItem<S> where
    S: PartialEq<S> + StoreSpec,
    <S as StoreSpec>::Status: PartialEq<<S as StoreSpec>::Status>,
    <S as StoreSpec>::Key: PartialEq<<S as StoreSpec>::Key>, 

impl<S> StructuralPartialEq for MetaItem<S> where
    S: StoreSpec

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> Erased for T

impl<T> From<T> for T[src]

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]