pub trait ChannelReader<T> {
    fn read(&self, reader: &mut BitReader<'_>) -> T;
}

Required Methods

Implementors