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: Double
pub const MAX: Double
pub const MIN: Double
pub const NAN: Double
pub const NEG_INFINITY: Double
pub fn from_be_bytes(bytes: [u8; 8]) -> Double
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: Double) -> bool
pub fn is_identical_with(self, other: Double) -> 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more