Trait Complete
libflate::finish
pub trait Complete { fn complete(self) -> Result<()>; }
This trait allows to complete an I/O related processing.
fn complete(self) -> Result<()>
Completes the current processing and returns the result.
impl<W, E> Complete for libflate::deflate::Encoder<W, E> where W: Write, E: Lz77Encode,
impl<W, E> Complete for libflate::gzip::Encoder<W, E> where W: Write, E: Lz77Encode,
impl<W, E> Complete for libflate::zlib::Encoder<W, E> where W: Write, E: Lz77Encode,