Struct zstd::stream::write::Decoder [−][src]
pub struct Decoder<W: Write> { /* fields omitted */ }
A decoder that decompress and forward data to another writer.
Implementations
impl<W: Write> Decoder<W>
[src]
impl<W: Write> Decoder<W>
[src]pub fn new(writer: W) -> Result<Self>
[src]
Creates a new decoder.
pub fn with_dictionary(writer: W, dictionary: &[u8]) -> Result<Self>
[src]
Creates a new decoder, using an existing dictionary.
(Provides better compression ratio for small files, but requires the dictionary to be present during decompression.)
pub fn with_prepared_dictionary(
writer: W,
dictionary: &DecoderDictionary<'_>
) -> Result<Self>
[src]
writer: W,
dictionary: &DecoderDictionary<'_>
) -> Result<Self>
Creates a new decoder, using an existing prepared DecoderDictionary
.
(Provides better compression ratio for small files, but requires the dictionary to be present during decompression.)
pub fn get_ref(&self) -> &W
[src]
Acquires a reference to the underlying writer.
pub fn get_mut(&mut self) -> &mut W
[src]
Acquires a mutable reference to the underlying writer.
Note that mutation of the writer may result in surprising results if this decoder is continued to be used.
pub fn into_inner(self) -> W
[src]
Returns the inner Write
.
pub fn recommended_input_size() -> usize
[src]
Return a recommendation for the size of data to write at once.
Trait Implementations
impl<W: Write> Write for Decoder<W>
[src]
impl<W: Write> Write for Decoder<W>
[src]fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src]
pub fn is_write_vectored(&self) -> bool
[src]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
pub fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
1.0.0[src]
pub fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Auto Trait Implementations
impl<W> RefUnwindSafe for Decoder<W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<W> Send for Decoder<W> where
W: Send,
W: Send,
impl<W> !Sync for Decoder<W>
impl<W> Unpin for Decoder<W> where
W: Unpin,
W: Unpin,
impl<W> UnwindSafe for Decoder<W> where
W: UnwindSafe,
W: UnwindSafe,