pub trait BoundPartialOrd<T = Self> {
// Required method
fn bound_partial_cmp<B: AsBound<Item = T>>(
&self,
other: &Directed<B>,
) -> Option<BoundOrdering>;
}Required Methods§
fn bound_partial_cmp<B: AsBound<Item = T>>( &self, other: &Directed<B>, ) -> Option<BoundOrdering>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.