pub trait BoundOrd<T = Self> {
    // Required method
    fn bound_cmp<B: AsBound<Item = T>>(
        &self,
        other: &Directed<B>
    ) -> BoundOrdering;
}

Required Methods§

source

fn bound_cmp<B: AsBound<Item = T>>(&self, other: &Directed<B>) -> BoundOrdering

Implementors§

source§

impl<B: AsBound> BoundOrd<<B as AsBound>::Item> for Directed<B>where B::Item: Ord + Measure + PartialEnum,