[][src]Trait bitstream_reader::BitSkip

pub trait BitSkip<E: Endianness>: BitRead<E> {
    fn skip(stream: &mut BitStream<E>) -> Result<()> { ... }
}

Trait to allow skipping a type

This might be faster than trying to read it

Provided methods

fn skip(stream: &mut BitStream<E>) -> Result<()>

Skip the type

Loading content...

Implementors

impl<T: BitRead<E> + BitSize, E: Endianness> BitSkip<E> for T[src]

Loading content...