[][src]Trait fluvio_stream_model::epoch::DualDiff

pub trait DualDiff {
    pub fn diff(&self, another: &Self) -> ChangeFlag;
}

Required methods

pub fn diff(&self, another: &Self) -> ChangeFlag[src]

check if another is different from myself

Loading content...

Implementors

impl<S, C> DualDiff for MetadataStoreObject<S, C> where
    S: Spec,
    C: MetadataItem + PartialEq
[src]

pub fn diff(&self, another: &Self) -> ChangeFlag[src]

compute difference, in our case we take account of version as well

Loading content...