pub trait Encoderwhere
    CompressionError: From<Self::Error>,
{ type Error; fn next<I: Iterator<Item = u8>>(
        &mut self,
        iter: &mut I,
        action: &Action
    ) -> Option<Result<u8, Self::Error>>; }

Required Associated Types

Required Methods

Implementors