pub struct ArchiveTargzExtractParams {
pub path: String,
pub destination: String,
pub exclude_files: Option<Vec<String>>,
}Expand description
Parameters describing how to extract files from a gzipped tarball.
Fields§
§path: StringPath to tarball to extract.
destination: StringPath of directory to extract files to.
exclude_files: Option<Vec<String>>A list of filename globs to exclude.
Trait Implementations§
Source§impl Clone for ArchiveTargzExtractParams
impl Clone for ArchiveTargzExtractParams
Source§fn clone(&self) -> ArchiveTargzExtractParams
fn clone(&self) -> ArchiveTargzExtractParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArchiveTargzExtractParams
impl Debug for ArchiveTargzExtractParams
Source§impl<'de> Deserialize<'de> for ArchiveTargzExtractParams
impl<'de> Deserialize<'de> for ArchiveTargzExtractParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArchiveTargzExtractParams
impl RefUnwindSafe for ArchiveTargzExtractParams
impl Send for ArchiveTargzExtractParams
impl Sync for ArchiveTargzExtractParams
impl Unpin for ArchiveTargzExtractParams
impl UnwindSafe for ArchiveTargzExtractParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more