[][src]Trait comde::com::Compress

pub trait Compress {
    type Reader: Read;
    fn to_reader(self) -> Self::Reader;
}

Associated Types

type Reader: Read

Loading content...

Required methods

fn to_reader(self) -> Self::Reader

Loading content...

Implementations on Foreign Types

impl Compress for String[src]

type Reader = Cursor<String>

impl<'a> Compress for &'a str[src]

type Reader = Cursor<&'a str>

impl<'a> Compress for &'a Vec<u8>[src]

type Reader = Cursor<Self>

Loading content...

Implementors

Loading content...