Struct BigEndian
struct BigEndian
Big-endian, or most significant bits first
Implementations
impl Clone for BigEndian
fn clone(self: &Self) -> BigEndian
impl Copy for BigEndian
impl Debug for BigEndian
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl Endianness for BigEndian
fn push<N>(queue: &mut BitQueue<Self, N>, bits: u32, value: N) where N: Numericfn push_fixed<B: u32, N>(queue: &mut BitQueue<Self, N>, value: N) where N: Numericfn pop<N>(queue: &mut BitQueue<Self, N>, bits: u32) -> N where N: Numericfn pop_fixed<B: u32, N>(queue: &mut BitQueue<Self, N>) -> N where N: Numericfn drop<N>(queue: &mut BitQueue<Self, N>, bits: u32) where N: Numericfn next_zeros<N>(queue: &BitQueue<Self, N>) -> u32 where N: Numericfn next_ones<N>(queue: &BitQueue<Self, N>) -> u32 where N: Numericfn read_signed<R, S>(r: &mut R, bits: u32) -> Result<S> where R: BitRead, S: SignedNumericfn read_signed_fixed<R, B: u32, S>(r: &mut R) -> Result<S> where R: BitRead, S: SignedNumericfn write_signed<W, S>(w: &mut W, bits: u32, value: S) -> Result<()> where W: BitWrite, S: SignedNumericfn write_signed_fixed<W, B: u32, S>(w: &mut W, value: S) -> Result<()> where W: BitWrite, S: SignedNumericfn read_primitive<R, V>(r: &mut R) -> Result<V> where R: BitRead, V: Primitivefn write_primitive<W, V>(w: &mut W, value: V) -> Result<()> where W: BitWrite, V: Primitivefn read_numeric<R, V>(r: R) -> Result<V> where R: Read, V: Primitivefn write_numeric<W, V>(w: W, value: V) -> Result<()> where W: Write, V: Primitive
impl Freeze for BigEndian
impl RefUnwindSafe for BigEndian
impl Send for BigEndian
impl Sync for BigEndian
impl Unpin for BigEndian
impl UnsafeUnpin for BigEndian
impl UnwindSafe for BigEndian
impl<T> Any for BigEndian
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for BigEndian
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for BigEndian
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for BigEndian
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for BigEndian
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for BigEndian
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for BigEndian
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for BigEndian
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for BigEndian
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>