pub enum Variant {
Common,
BSD,
GNU,
}
Expand description
Variants of the Unix archive format.
Variants§
Common
Used by Debian package files; allows only short filenames.
BSD
Used by BSD ar
(and OS X); backwards-compatible with common variant.
GNU
Used by GNU ar
(and Windows); incompatible with common variant.
Trait Implementations§
source§impl PartialEq<Variant> for Variant
impl PartialEq<Variant> for Variant
impl Copy for Variant
impl Eq for Variant
impl StructuralEq for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations§
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnwindSafe for Variant
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