[−][src]Struct tauri_api::file::Extract
Implementations
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_format(&mut self, format: ArchiveFormat) -> &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]
&self,
into_dir: &Path,
file_to_extract: T
) -> Result<()>
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
Auto Trait Implementations
impl<'a> RefUnwindSafe for Extract<'a>
impl<'a> Send for Extract<'a>
impl<'a> Sync for Extract<'a>
impl<'a> Unpin for Extract<'a>
impl<'a> UnwindSafe for Extract<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,