Trait SliceChain

Source
#[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§

Source

fn chaining_lt(left: &[Self], right: &[Self]) -> ControlFlow<bool>

Source

fn chaining_le(left: &[Self], right: &[Self]) -> ControlFlow<bool>

Source

fn chaining_gt(left: &[Self], right: &[Self]) -> ControlFlow<bool>

Source

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.

Implementors§