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: 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; 4]) -> Self
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: Self) -> bool
pub fn is_identical_with(self, other: Self) -> 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