pub enum FloatPredicate {
Show 16 variants
False,
Oeq,
Ogt,
Oge,
Olt,
Ole,
One,
Ord,
Uno,
Ueq,
Ugt,
Uge,
Ult,
Ule,
Une,
True,
}Expand description
Public API for FloatPredicate.
Variants§
False
False variant.
Oeq
Oeq variant.
Ogt
Ogt variant.
Oge
Oge variant.
Olt
Olt variant.
Ole
Ole variant.
One
One variant.
Ord
Ord variant.
Uno
Uno variant.
Ueq
Ueq variant.
Ugt
Ugt variant.
Uge
Uge variant.
Ult
Ult variant.
Ule
Ule variant.
Une
Une variant.
True
True variant.
Implementations§
Trait Implementations§
Source§impl Clone for FloatPredicate
impl Clone for FloatPredicate
Source§fn clone(&self) -> FloatPredicate
fn clone(&self) -> FloatPredicate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FloatPredicate
impl Debug for FloatPredicate
Source§impl PartialEq for FloatPredicate
impl PartialEq for FloatPredicate
Source§fn eq(&self, other: &FloatPredicate) -> bool
fn eq(&self, other: &FloatPredicate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FloatPredicate
impl Eq for FloatPredicate
impl StructuralPartialEq for FloatPredicate
Auto Trait Implementations§
impl Freeze for FloatPredicate
impl RefUnwindSafe for FloatPredicate
impl Send for FloatPredicate
impl Sync for FloatPredicate
impl Unpin for FloatPredicate
impl UnsafeUnpin for FloatPredicate
impl UnwindSafe for FloatPredicate
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