#[non_exhaustive]
pub enum ArchiveKind {
Unknown,
Gnu,
Gnu64,
Bsd,
Bsd64,
Coff,
}
Expand description
The kind of archive format.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown
There are no special files that indicate the archive format.
Gnu
The GNU (or System V) archive format.
Gnu64
The GNU (or System V) archive format with 64-bit symbol table.
Bsd
The BSD archive format.
Bsd64
The BSD archive format with 64-bit symbol table.
This is used for Darwin.
Coff
The Windows COFF archive format.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ArchiveKind
impl Send for ArchiveKind
impl Sync for ArchiveKind
impl Unpin for ArchiveKind
impl UnwindSafe for ArchiveKind
Blanket Implementations
Mutably borrows from an owned value. Read more