pub trait Le<Rhs: ?Sized = Self> { // Required method fn le(&self, other: &Rhs) -> bool; }
Represents C++’s operator<=.
operator<=
This method tests less than or equal to (for self and other) and is used by the <=
self
other
<=