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