pub struct F2Dot14(/* private fields */);Expand description
The F2DOT14 format consists of a signed, 2’s complement integer and an unsigned fraction.
To compute the actual value, take the integer and add the fraction.
Implementations§
Trait Implementations§
Source§impl Ord for F2Dot14
impl Ord for F2Dot14
Source§impl PartialOrd for F2Dot14
impl PartialOrd for F2Dot14
Source§impl WriteBinary for F2Dot14
impl WriteBinary for F2Dot14
impl Copy for F2Dot14
impl Eq for F2Dot14
impl StructuralPartialEq for F2Dot14
Auto Trait Implementations§
impl Freeze for F2Dot14
impl RefUnwindSafe for F2Dot14
impl Send for F2Dot14
impl Sync for F2Dot14
impl Unpin for F2Dot14
impl UnwindSafe for F2Dot14
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 moreSource§impl<T> ReadBinary for Twhere
T: ReadUnchecked,
impl<T> ReadBinary for Twhere
T: ReadUnchecked,
type HostType<'a> = <T as ReadUnchecked>::HostType
fn read<'a>( ctxt: &mut ReadCtxt<'a>, ) -> Result<<T as ReadBinary>::HostType<'a>, ParseError>
Source§impl<T> ReadBinaryDep for Twhere
T: ReadBinary,
impl<T> ReadBinaryDep for Twhere
T: ReadBinary,
type Args<'a> = ()
type HostType<'a> = <T as ReadBinary>::HostType<'a>
fn read_dep<'a>( ctxt: &mut ReadCtxt<'a>, _: <T as ReadBinaryDep>::Args<'_>, ) -> Result<<T as ReadBinaryDep>::HostType<'a>, ParseError>
Source§impl<T> ReadFixedSizeDep for Twhere
T: ReadUnchecked,
impl<T> ReadFixedSizeDep for Twhere
T: ReadUnchecked,
Source§impl<T> ReadUnchecked for Twhere
T: ReadFrom,
impl<T> ReadUnchecked for Twhere
T: ReadFrom,
Source§const SIZE: usize = const SIZE: usize = <T::ReadType>::SIZE;
const SIZE: usize = const SIZE: usize = <T::ReadType>::SIZE;
The number of bytes consumed by
read_unchecked.type HostType = T
Source§unsafe fn read_unchecked<'a>(
ctxt: &mut ReadCtxt<'a>,
) -> <T as ReadUnchecked>::HostType
unsafe fn read_unchecked<'a>( ctxt: &mut ReadCtxt<'a>, ) -> <T as ReadUnchecked>::HostType
Must read exactly
SIZE bytes.
Unsafe as it avoids prohibitively expensive per-byte bounds checking.Source§impl<T, HostType> WriteBinaryDep<HostType> for Twhere
T: WriteBinary<HostType>,
impl<T, HostType> WriteBinaryDep<HostType> for Twhere
T: WriteBinary<HostType>,
Source§type Output = <T as WriteBinary<HostType>>::Output
type Output = <T as WriteBinary<HostType>>::Output
The type of the value returned by
write_dep.Source§fn write_dep<C>(
ctxt: &mut C,
val: HostType,
_: <T as WriteBinaryDep<HostType>>::Args,
) -> Result<<T as WriteBinaryDep<HostType>>::Output, WriteError>where
C: WriteContext,
fn write_dep<C>(
ctxt: &mut C,
val: HostType,
_: <T as WriteBinaryDep<HostType>>::Args,
) -> Result<<T as WriteBinaryDep<HostType>>::Output, WriteError>where
C: WriteContext,
Write the binary representation of Self to
ctxt.