[−][src]Struct bitstream_io::BigEndian
Big-endian, or most significant bits first
Trait Implementations
impl Clone for BigEndian[src]
impl Copy for BigEndian[src]
impl Endianness for BigEndian[src]
pub fn push<N>(queue: &mut BitQueue<Self, N>, bits: u32, value: N) where
N: Numeric, [src]
N: Numeric,
pub fn pop<N>(queue: &mut BitQueue<Self, N>, bits: u32) -> N where
N: Numeric, [src]
N: Numeric,
pub fn drop<N>(queue: &mut BitQueue<Self, N>, bits: u32) where
N: Numeric, [src]
N: Numeric,
pub fn next_zeros<N>(queue: &BitQueue<Self, N>) -> u32 where
N: Numeric, [src]
N: Numeric,
pub fn next_ones<N>(queue: &BitQueue<Self, N>) -> u32 where
N: Numeric, [src]
N: Numeric,
pub fn read_signed<R, S>(r: &mut R, bits: u32) -> Result<S> where
R: BitRead,
S: SignedNumeric, [src]
R: BitRead,
S: SignedNumeric,
pub fn write_signed<W, S>(w: &mut W, bits: u32, value: S) -> Result<()> where
W: BitWrite,
S: SignedNumeric, [src]
W: BitWrite,
S: SignedNumeric,
pub fn read_numeric<R, N>(r: R) -> Result<N> where
R: Read,
N: Numeric, [src]
R: Read,
N: Numeric,
pub fn write_numeric<W, N>(w: W, value: N) -> Result<()> where
W: Write,
N: Numeric, [src]
W: Write,
N: Numeric,
Auto Trait Implementations
impl RefUnwindSafe for BigEndian[src]
impl Send for BigEndian[src]
impl Sync for BigEndian[src]
impl Unpin for BigEndian[src]
impl UnwindSafe for BigEndian[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,