|
rstd 0.1.0
|
Trait for partial equality comparisons, analogous to Rust's PartialEq.
More...
Trait for partial equality comparisons, analogous to Rust's PartialEq.
Implementors provide:
eq(const Rhs& other) noexcept -> bool : Returns true if self equals other.ne(const Rhs& other) noexcept -> bool : Returns true if self does not equal other (has default). | Rhs | The type to compare against. |