Struct zstd::stream::write::Decoder [−][src]
A decoder that decompress and forward data to another writer.
Implementations
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
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,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,