[][src]Struct vfs_zip::ZipWriteOnly

pub struct ZipWriteOnly<IO: Write + Seek + Send + 'static> { /* fields omitted */ }

A write-only zip archive filesystem

Implementations

impl<IO: Write + Seek + Send> ZipWriteOnly<IO>[src]

pub fn new_strong(io: IO) -> Result<Self>[src]

Create a new write-only zip filesystem.

The underlying I/O will not be closed until the filesystem and all outstanding files are dropped.

pub fn new_weak(io: IO) -> Result<Self>[src]

Create a new write-only zip filesystem.

The underlying I/O will be closed when the filesystem is dropped. Any outstanding files will start generating I/O errors and will not be committed to the .zip

Trait Implementations

impl<IO: Write + Seek + Send> Debug for ZipWriteOnly<IO>[src]

impl<IO: Write + Seek + Send + 'static> FileSystem for ZipWriteOnly<IO>[src]

Auto Trait Implementations

impl<IO> RefUnwindSafe for ZipWriteOnly<IO>

impl<IO> Send for ZipWriteOnly<IO>

impl<IO> Sync for ZipWriteOnly<IO>

impl<IO> Unpin for ZipWriteOnly<IO>

impl<IO> UnwindSafe for ZipWriteOnly<IO>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.