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