IsLessThan

Trait IsLessThan 

Source
pub trait IsLessThan {
    // Required method
    fn is_less_than(&self, other: &Self) -> bool;
}

Required Methods§

Source

fn is_less_than(&self, other: &Self) -> 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.

Implementations on Foreign Types§

Source§

impl IsLessThan for &str

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for char

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for f32

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for f64

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for i8

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for i16

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for i32

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for i64

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for i128

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for isize

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for u8

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for u16

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for u32

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for u64

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for u128

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for usize

Source§

fn is_less_than(&self, other: &Self) -> bool

Source§

impl IsLessThan for String

Source§

fn is_less_than(&self, other: &Self) -> bool

Implementors§