Trait fluvio::metadata::store::DualDiff

source ·
pub trait DualDiff {
    // Required method
    fn diff(&self, new_value: &Self) -> ChangeFlag;
}

Required Methods§

source

fn diff(&self, new_value: &Self) -> ChangeFlag

check if another is different from myself

Object Safety§

This trait is not object safe.

Implementors§

source§

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