Struct tape::Archive [] [src]

pub struct Archive {
    // some fields omitted
}

An archive.

Methods

impl Archive
[src]

fn open<T: AsRef<Path>>(path: T) -> Result<Archive>

Open an archive.

fn extract<T: AsRef<Path>>(&self, path: T) -> Result<()>

Extract all files from the archive into a directory.

Trait Implementations

impl Drop for Archive
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more