pub struct F64(pub f64);
Tuple Fields§
§0: f64
Trait Implementations§
Source§impl Ord for F64
This works like PartialOrd
on f64
, except that NAN
sorts below all other floats
(and is equal to another NAN).
impl Ord for F64
This works like PartialOrd
on f64
, except that NAN
sorts below all other floats
(and is equal to another NAN).
Source§impl PartialOrd for F64
This works like PartialOrd
on f64
, except that NAN
sorts below all other floats
(and is equal to another NAN). This always returns a Some
.
impl PartialOrd for F64
This works like PartialOrd
on f64
, except that NAN
sorts below all other floats
(and is equal to another NAN). This always returns a Some
.
impl Copy for F64
impl Eq for F64
Auto Trait Implementations§
impl Freeze for F64
impl RefUnwindSafe for F64
impl Send for F64
impl Sync for F64
impl Unpin for F64
impl UnwindSafe for F64
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