[][src]Struct igo::ZipDir

pub struct ZipDir<R: Read + Seek>(_);

DirLike implement for Zip file

Methods

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

pub fn new(buf: R) -> Result<ZipDir<R>>[src]

zipバイナリを読み込んで初期化する

Arguments

  • buf - std::io::Cursor<&u8> や std::fs::File 等

Trait Implementations

impl<R: Read + Seek> DirLike for ZipDir<R>[src]

Auto Trait Implementations

impl<R> Unpin for ZipDir<R> where
    R: Unpin

impl<R> Sync for ZipDir<R> where
    R: Sync

impl<R> Send for ZipDir<R> where
    R: Send

impl<R> RefUnwindSafe for ZipDir<R> where
    R: RefUnwindSafe

impl<R> UnwindSafe for ZipDir<R> where
    R: UnwindSafe

Blanket Implementations

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.

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

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

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