pub enum ArchiveFormat {
Show 19 variants
Tar,
TarGnu,
TarPax,
TarPaxRestricted,
TarUstar,
Zip,
SevenZip,
Ar,
Cpio,
Iso9660,
Xar,
Mtree,
Raw,
Shar,
Warc,
Rar,
Rar5,
Lha,
Cab,
}
Expand description
Archive format types
Variants§
Tar
TAR format
TarGnu
GNU TAR format with extensions
TarPax
PAX (POSIX TAR) format
TarPaxRestricted
Restricted PAX format
TarUstar
POSIX ustar format
Zip
ZIP format
SevenZip
7-Zip format
Ar
AR (Unix archive) format
Cpio
CPIO format
Iso9660
ISO 9660 CD-ROM format
Xar
XAR format
Mtree
MTREE format
Raw
RAW format (no formatting)
Shar
Shar shell archive format
Warc
WARC web archive format
Rar
RAR format (read-only)
Rar5
RAR 5.x format (read-only)
Lha
LHA format (read-only)
Cab
CAB format (read-only)
Implementations§
Trait Implementations§
Source§impl Clone for ArchiveFormat
impl Clone for ArchiveFormat
Source§fn clone(&self) -> ArchiveFormat
fn clone(&self) -> ArchiveFormat
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 ArchiveFormat
impl Debug for ArchiveFormat
Source§impl PartialEq for ArchiveFormat
impl PartialEq for ArchiveFormat
impl Copy for ArchiveFormat
impl Eq for ArchiveFormat
impl StructuralPartialEq for ArchiveFormat
Auto Trait Implementations§
impl Freeze for ArchiveFormat
impl RefUnwindSafe for ArchiveFormat
impl Send for ArchiveFormat
impl Sync for ArchiveFormat
impl Unpin for ArchiveFormat
impl UnwindSafe for ArchiveFormat
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