pub trait Decoder<T> {
// Required method
fn next(&mut self) -> Result<Option<T>, Error>;
}Required Methods§
Implementors§
impl Decoder<f64> for U64ToF64Decoder
impl Decoder<i64> for U64ToI64Decoder
impl<D: Streamable, S: Streamable + ZagZig<Output = D>> Decoder<D> for ZigZagDecoder<S>
impl<T: Hash + Eq + Default + ReadFromBEBits + Clone, B: Bits> Decoder<T> for GroupDecodingStream<'_, T, B>
Available on crate features
std and miniz only.