pub enum CmpfPred {
Oeq,
One,
Olt,
Ole,
Ogt,
Oge,
Ueq,
Une,
}Expand description
Float comparison predicates for arith.cmpf.
Variants§
Oeq
Ordered equal
One
Ordered not equal
Olt
Ordered less than
Ole
Ordered less than or equal
Ogt
Ordered greater than
Oge
Ordered greater than or equal
Ueq
Unordered equal
Une
Unordered not equal
Trait Implementations§
impl Copy for CmpfPred
impl Eq for CmpfPred
impl StructuralPartialEq for CmpfPred
Auto Trait Implementations§
impl Freeze for CmpfPred
impl RefUnwindSafe for CmpfPred
impl Send for CmpfPred
impl Sync for CmpfPred
impl Unpin for CmpfPred
impl UnsafeUnpin for CmpfPred
impl UnwindSafe for CmpfPred
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