pub enum Equality {
NotEqual,
Equal,
Unknown,
}
Expand description
Represents whether a value is equal to another.
Variants§
NotEqual
Values are not equal.
Equal
Values are equal.
Unknown
Cannot determine equality of values.
This is when either or both Tracked
values are Tracked::Unknown
.
Trait Implementations§
Source§impl PartialOrd for Equality
impl PartialOrd for Equality
impl Copy for Equality
impl Eq for Equality
impl StructuralPartialEq for Equality
Auto Trait Implementations§
impl Freeze for Equality
impl RefUnwindSafe for Equality
impl Send for Equality
impl Sync for Equality
impl Unpin for Equality
impl UnwindSafe for Equality
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