[][src]Trait fluvio_sc::dispatcher::store::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
    C: MetadataItem + PartialEq<C>,
    S: Spec
[src]

pub fn diff(&self, another: &MetadataStoreObject<S, C>) -> ChangeFlag[src]

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

Loading content...