Struct archiver_rs::Zip[][src]

pub struct Zip<R: Read + Seek> { /* fields omitted */ }

Implementations

impl Zip<File>[src]

pub fn open(path: &Path) -> Result<Self>[src]

impl<R: Read + Seek> Zip<R>[src]

pub fn new(r: R) -> Result<Self>[src]

Trait Implementations

impl<R: Read + Seek> Archive for Zip<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for Zip<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for Zip<R> where
    R: Send
[src]

impl<R> Sync for Zip<R> where
    R: Sync
[src]

impl<R> Unpin for Zip<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for Zip<R> where
    R: UnwindSafe
[src]

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.