[−][src]Trait compression::prelude::Decoder
Associated Types
Loading content...Required methods
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
Implementors
impl Decoder for BZip2Decoder
[src]
type Input = u8
type Output = u8
type Error = BZip2Error
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
[src]
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
impl Decoder for Deflater
[src]
type Input = u8
type Output = u8
type Error = CompressionError
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
[src]
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
impl Decoder for GZipDecoder
[src]
type Input = u8
type Output = u8
type Error = CompressionError
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
[src]
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
impl Decoder for LzhufDecoder
[src]
type Input = u8
type Output = u8
type Error = CompressionError
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
[src]
&mut self,
iter: &mut I
) -> Option<Result<Self::Output, Self::Error>>
impl Decoder for LzssDecoder
[src]
type Input = LzssCode
type Error = CompressionError
type Output = u8
fn next<I: Iterator<Item = Self::Input>>(
&mut self,
s: &mut I
) -> Option<Result<Self::Output, Self::Error>>
[src]
&mut self,
s: &mut I
) -> Option<Result<Self::Output, Self::Error>>