pub enum Eq {
None,
Eq,
Ne,
Lt,
Le,
Gt,
Ge,
}Expand description
Equality comparisons
Values
None- None comparisons.Eq-==.Ne-!=.Lt-<.Le-<=.Gt->.Ge->=.
Variants§
Trait Implementations§
impl StructuralPartialEq for Eq
Auto Trait Implementations§
impl RefUnwindSafe for Eq
impl Send for Eq
impl Sync for Eq
impl Unpin for Eq
impl UnwindSafe for Eq
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more