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