pub trait CheckOrder<T = Self> {
// Required method
fn check_order(self, other: T);
}Required Methods§
fn check_order(self, other: T)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".