pub trait ByteOrd: ToOutput + PartialOrd {
// Provided method
fn bytes_cmp(&self, other: &Self) -> Ordering { ... }
}Expand description
Traits for which total order matches that of ToOutput::vec.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".