[][src]Struct self_update::Extract

pub struct Extract<'a> { /* fields omitted */ }

Extract contents of an encoded archive (e.g. tar.gz) file to a specified directory

  • Errors:
    • Io - opening files
    • Io - gzip decoding
    • Io - archive unpacking

Methods

impl<'a> Extract<'a>[src]

pub fn from_source(source: &'a Path) -> Extract<'a>[src]

Create an Extractor from a source path

pub fn archive(&mut self, kind: ArchiveKind) -> &mut Self[src]

Specify an archive format of the source being extracted. If not specified, the archive format will determined from the file extension.

pub fn extract_into(&self, into_dir: &Path) -> Result<()>[src]

Extract an entire source archive into a specified path. If the source is a single compressed file and not an archive, it will be extracted into a file with the same name inside of into_dir.

pub fn extract_file<T: AsRef<Path>>(
    &self,
    into_dir: &Path,
    file_to_extract: T
) -> Result<()>
[src]

Extract a single file from a source and save to a file of the same name in into_dir. If the source is a single compressed file, it will be saved with the name file_to_extract in the specified into_dir.

Trait Implementations

impl<'a> Debug for Extract<'a>[src]

Auto Trait Implementations

impl<'a> Send for Extract<'a>

impl<'a> Sync for Extract<'a>

impl<'a> Unpin for Extract<'a>

impl<'a> UnwindSafe for Extract<'a>

impl<'a> RefUnwindSafe for Extract<'a>

Blanket Implementations

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

impl<T> From<T> for 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]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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