pub struct Double { /* private fields */ }
Expand description
Uses internally a f64
.
Serialization does not follow the canonical mapping.
Implementations§
Source§impl Double
impl Double
pub const INFINITY: Self
pub const MAX: Self
pub const MIN: Self
pub const NAN: Self
pub const NEG_INFINITY: Self
pub fn from_be_bytes(bytes: [u8; 8]) -> Self
pub fn to_be_bytes(self) -> [u8; 8]
pub fn is_nan(self) -> bool
pub fn is_finite(self) -> bool
Sourcepub fn is_identical_with(self, other: Self) -> bool
pub fn is_identical_with(self, other: Self) -> bool
Checks if the two values are identical.
Trait Implementations§
Source§impl PartialOrd for Double
impl PartialOrd for Double
impl Copy for Double
impl StructuralPartialEq for Double
Auto Trait Implementations§
impl Freeze for Double
impl RefUnwindSafe for Double
impl Send for Double
impl Sync for Double
impl Unpin for Double
impl UnwindSafe for Double
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