pub trait Decoder<T> {
// Required method
fn next(&mut self) -> Result<Option<T>, Error>;
}
Required Methods§
Implementors§
impl Decoder<f64> for U64ToF64Decoder
impl<'a, T: Hash + Eq + Default + ReadFromBEBits + Copy, B: Bits> Decoder<T> for GroupDecodingStream<'a, T, B>
Available on crate features
std
and miniz
only.