[−][src]Struct zip::write::ZipWriter
Generator for ZIP files.
fn doit() -> zip::result::ZipResult<()> { use std::io::Write; // For this example we write to a buffer, but normally you should use a File let mut buf: &mut [u8] = &mut [0u8; 65536]; let mut w = std::io::Cursor::new(buf); let mut zip = zip::ZipWriter::new(w); let options = zip::write::FileOptions::default().compression_method(zip::CompressionMethod::Stored); zip.start_file("hello_world.txt", options)?; zip.write(b"Hello, World!")?; // Optionally finish the zip. (this is also done on drop) zip.finish()?; Ok(()) } println!("Result: {:?}", doit().unwrap());
Methods
impl<W: Write + Seek> ZipWriter<W>
[src]
pub fn new(inner: W) -> ZipWriter<W>
[src]
Initializes the ZipWriter.
Before writing to this object, the start_file command should be called.
pub fn set_comment<S>(&mut self, comment: S) where
S: Into<String>,
[src]
S: Into<String>,
Set ZIP archive comment. Defaults to 'zip-rs' if not set.
pub fn start_file<S>(&mut self, name: S, options: FileOptions) -> ZipResult<()> where
S: Into<String>,
[src]
S: Into<String>,
Starts a file.
pub fn start_file_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
[src]
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
Starts a file, taking a Path as argument.
This function ensures that the '/' path seperator is used. It also ignores all non 'Normal' Components, such as a starting '/' or '..' and '.'.
pub fn add_directory<S>(
&mut self,
name: S,
options: FileOptions
) -> ZipResult<()> where
S: Into<String>,
[src]
&mut self,
name: S,
options: FileOptions
) -> ZipResult<()> where
S: Into<String>,
Add a directory entry.
You can't write data to the file afterwards.
pub fn add_directory_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
[src]
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
Add a directory entry, taking a Path as argument.
This function ensures that the '/' path seperator is used. It also ignores all non 'Normal' Components, such as a starting '/' or '..' and '.'.
pub fn finish(&mut self) -> ZipResult<W>
[src]
Finish the last file and write all other zip-structures
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.
Trait Implementations
impl<W: Write + Seek> Drop for ZipWriter<W>
[src]
impl<W: Write + Seek> Write for ZipWriter<W>
[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
fn write_vectored(&mut self, bufs: &[IoSlice]) -> Result<usize, Error>
1.36.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice]) -> Result<(), Error>
[src]
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0[src]
fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Auto Trait Implementations
impl<W> RefUnwindSafe for ZipWriter<W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<W> Send for ZipWriter<W> where
W: Send,
W: Send,
impl<W> Sync for ZipWriter<W> where
W: Sync,
W: Sync,
impl<W> Unpin for ZipWriter<W> where
W: Unpin,
W: Unpin,
impl<W> UnwindSafe for ZipWriter<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,
fn borrow_mut(&mut self) -> &mut T
[src]
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>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<W> WritePodExt for W where
W: Write,
W: Write,
fn write_u64<T>(&mut self, val: u64) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_u32<T>(&mut self, val: u32) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_u16<T>(&mut self, val: u16) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_u8(&mut self, val: u8) -> Result<(), Error>
fn write_i64<T>(&mut self, val: i64) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_i32<T>(&mut self, val: i32) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_i16<T>(&mut self, val: i16) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_i8(&mut self, val: i8) -> Result<(), Error>
fn write_f32<T>(&mut self, val: f32) -> Result<(), Error> where
T: Endianness,
T: Endianness,
fn write_f64<T>(&mut self, val: f64) -> Result<(), Error> where
T: Endianness,
T: Endianness,