pub type F64 = F64<NativeEndian>;
Expand description
A 64-bit floating point number stored in native-endian byte order.
Aliased Type§
struct F64(/* private fields */);
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes
Implementations
Source§impl<O> F64<O>
impl<O> F64<O>
Sourcepub const ZERO: F64<O>
pub const ZERO: F64<O>
The value zero.
This constant should be preferred to constructing a new value
using new
, as new
may perform an endianness swap depending
on the endianness and platform.
Sourcepub const fn from_bytes(bytes: [u8; 8]) -> F64<O>
pub const fn from_bytes(bytes: [u8; 8]) -> F64<O>
Constructs a new value from bytes which are already in the
endianness O
.
Source§impl<O: ByteOrder> F64<O>
impl<O: ByteOrder> F64<O>
Sourcepub fn new(n: f64) -> F64<O>
pub fn new(n: f64) -> F64<O>
Constructs a new value, possibly performing an endianness swap
to guarantee that the returned value has endianness O
.
Trait Implementations
Source§impl<O: ByteOrder> AddAssign for F64<O>
impl<O: ByteOrder> AddAssign for F64<O>
Source§fn add_assign(&mut self, rhs: F64<O>)
fn add_assign(&mut self, rhs: F64<O>)
Performs the
+=
operation. Read moreSource§impl<O> AsBytes for F64<O>
impl<O> AsBytes for F64<O>
Source§impl<O: ByteOrder> DivAssign for F64<O>
impl<O: ByteOrder> DivAssign for F64<O>
Source§fn div_assign(&mut self, rhs: F64<O>)
fn div_assign(&mut self, rhs: F64<O>)
Performs the
/=
operation. Read moreSource§impl<O> FromBytes for F64<O>
impl<O> FromBytes for F64<O>
Source§fn mut_from_prefix(bytes: &mut [u8]) -> Option<&mut Self>
fn mut_from_prefix(bytes: &mut [u8]) -> Option<&mut Self>
Source§fn mut_from_suffix(bytes: &mut [u8]) -> Option<&mut Self>
fn mut_from_suffix(bytes: &mut [u8]) -> Option<&mut Self>
Source§fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
Interprets the prefix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
Interprets the suffix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§fn mut_slice_from(bytes: &mut [u8]) -> Option<&mut [Self]>
fn mut_slice_from(bytes: &mut [u8]) -> Option<&mut [Self]>
Source§fn mut_slice_from_prefix(
bytes: &mut [u8],
count: usize,
) -> Option<(&mut [Self], &mut [u8])>
fn mut_slice_from_prefix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [Self], &mut [u8])>
Interprets the prefix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moreSource§fn mut_slice_from_suffix(
bytes: &mut [u8],
count: usize,
) -> Option<(&mut [u8], &mut [Self])>
fn mut_slice_from_suffix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [u8], &mut [Self])>
Interprets the suffix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moreSource§impl<O> FromZeroes for F64<O>
impl<O> FromZeroes for F64<O>
Source§impl<O: ByteOrder> MulAssign for F64<O>
impl<O: ByteOrder> MulAssign for F64<O>
Source§fn mul_assign(&mut self, rhs: F64<O>)
fn mul_assign(&mut self, rhs: F64<O>)
Performs the
*=
operation. Read moreSource§impl<O: ByteOrder> RemAssign for F64<O>
impl<O: ByteOrder> RemAssign for F64<O>
Source§fn rem_assign(&mut self, rhs: F64<O>)
fn rem_assign(&mut self, rhs: F64<O>)
Performs the
%=
operation. Read moreSource§impl<O: ByteOrder> SubAssign for F64<O>
impl<O: ByteOrder> SubAssign for F64<O>
Source§fn sub_assign(&mut self, rhs: F64<O>)
fn sub_assign(&mut self, rhs: F64<O>)
Performs the
-=
operation. Read more