pub enum ArchiveFormat {
Pax,
Gnu,
}Expand description
An automatically detected, mutually exclusive tar archive family.
Variants§
Pax
pax ustar headers with optional pax extended headers.
Gnu
Old GNU tar headers with optional L and K extension entries.
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ArchiveFormat
Source§impl Debug for ArchiveFormat
impl Debug for ArchiveFormat
Source§impl Display for ArchiveFormat
impl Display for ArchiveFormat
impl Eq for ArchiveFormat
Source§impl PartialEq for ArchiveFormat
impl PartialEq for ArchiveFormat
Source§fn eq(&self, other: &ArchiveFormat) -> bool
fn eq(&self, other: &ArchiveFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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