Le

Trait Le 

Source
pub trait Le<Rhs: ?Sized = Self> {
    // Required method
    fn le(&self, other: &Rhs) -> bool;
}
Expand description

Represents C++’s operator<=.

Required Methods§

Source

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <=

Implementors§