refactor: Make ZipWriter::finish()
consume the ZipWriter
This commit is contained in:
parent
a8ec016b51
commit
84aa6e8f11
1 changed files with 3 additions and 4 deletions
|
@ -1188,7 +1188,7 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
///
|
///
|
||||||
/// This will return the writer, but one should normally not append any data to the end of the file.
|
/// This will return the writer, but one should normally not append any data to the end of the file.
|
||||||
/// Note that the zipfile will also be finished on drop.
|
/// Note that the zipfile will also be finished on drop.
|
||||||
pub fn finish(&mut self) -> ZipResult<W> {
|
pub fn finish(mut self) -> ZipResult<W> {
|
||||||
let _central_start = self.finalize()?;
|
let _central_start = self.finalize()?;
|
||||||
let inner = mem::replace(&mut self.inner, Closed);
|
let inner = mem::replace(&mut self.inner, Closed);
|
||||||
Ok(inner.unwrap())
|
Ok(inner.unwrap())
|
||||||
|
@ -1440,14 +1440,13 @@ impl<W: Write + Seek> GenericZipWriter<W> {
|
||||||
feature = "deflate-zlib-ng",
|
feature = "deflate-zlib-ng",
|
||||||
))]
|
))]
|
||||||
{
|
{
|
||||||
return Ok(Box::new(move |bare| {
|
Ok(Box::new(move |bare| {
|
||||||
GenericZipWriter::Deflater(DeflateEncoder::new(
|
GenericZipWriter::Deflater(DeflateEncoder::new(
|
||||||
bare,
|
bare,
|
||||||
Compression::new(level),
|
Compression::new(level),
|
||||||
))
|
))
|
||||||
}));
|
}))
|
||||||
}
|
}
|
||||||
unreachable!()
|
|
||||||
}
|
}
|
||||||
#[cfg(feature = "deflate64")]
|
#[cfg(feature = "deflate64")]
|
||||||
CompressionMethod::Deflate64 => Err(ZipError::UnsupportedArchive(
|
CompressionMethod::Deflate64 => Err(ZipError::UnsupportedArchive(
|
||||||
|
|
Loading…
Add table
Reference in a new issue