pub trait ActionComparison<O> {
    // Provided method
    fn is_same_coverage(&self, other: &O) -> bool
       where Self: Sized + ActionCmp<O> + Debug,
             O: ActionCmp<Self> + Debug { ... }
}

Provided Methods§

source

fn is_same_coverage(&self, other: &O) -> bool
where Self: Sized + ActionCmp<O> + Debug, O: ActionCmp<Self> + Debug,

Implementors§