#[doc(hidden)] trait SliceChain: Sized {
// Required methods
fn chaining_lt(left: &[Self], right: &[Self]) -> ControlFlow<bool>;
fn chaining_le(left: &[Self], right: &[Self]) -> ControlFlow<bool>;
fn chaining_gt(left: &[Self], right: &[Self]) -> ControlFlow<bool>;
fn chaining_ge(left: &[Self], right: &[Self]) -> ControlFlow<bool>;
}
Required Methods§
fn chaining_lt(left: &[Self], right: &[Self]) -> ControlFlow<bool>
fn chaining_le(left: &[Self], right: &[Self]) -> ControlFlow<bool>
fn chaining_gt(left: &[Self], right: &[Self]) -> ControlFlow<bool>
fn chaining_ge(left: &[Self], right: &[Self]) -> ControlFlow<bool>
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.