Trait mhost::diff::Differ

source ·
pub trait Differ {
    type FieldType: Eq;

    // Required method
    fn difference(&self, other: &Self) -> Option<Difference<Self::FieldType>>;
}

Required Associated Types§

Required Methods§

source

fn difference(&self, other: &Self) -> Option<Difference<Self::FieldType>>

Object Safety§

This trait is not object safe.

Implementors§