[][src]Trait fluvio_sc::dispatcher::core::MetadataItem

pub trait MetadataItem: Clone + PartialEq<Self> + Default + Debug {
    type UId: PartialEq<Self::UId>;
    pub fn uid(&self) -> &Self::UId;
pub fn is_newer(&self, another: &Self) -> bool; pub fn is_being_deleted(&self) -> bool { ... } }

Associated Types

type UId: PartialEq<Self::UId>[src]

Loading content...

Required methods

pub fn uid(&self) -> &Self::UId[src]

pub fn is_newer(&self, another: &Self) -> bool[src]

checkif item is newer

Loading content...

Provided methods

pub fn is_being_deleted(&self) -> bool[src]

if object is process of being deleted

Loading content...

Implementations on Foreign Types

impl MetadataItem for u64[src]

type UId = u64

impl MetadataItem for u32[src]

type UId = u32

Loading content...

Implementors

impl MetadataItem for K8MetaItem[src]

type UId = String

Loading content...