pub trait TryPartialOrd<Rhs, E> {
    // Required method
    fn try_partial_cmp(&self, rhs: &Rhs) -> Result<Option<Ordering>, E>;
}

Required Methods§

Implementors§

source§

impl<K, V, Rhs> TryPartialOrd<Rhs, Error> for Entry<'_, K, V>
where K: PartialOrd<Rhs>,

source§

impl<Lhs, Rhs> TryPartialOrd<Rhs, Infallible> for Lhs
where Lhs: PartialOrd<Rhs>,