Enum object::read::archive::ArchiveKind[][src]

[]
pub enum ArchiveKind {
    Unknown,
    Gnu,
    Bsd,
    Coff,
}
[]

The kind of archive format.

Variants

Unknown
[]

There are no special files that indicate the archive format.

Gnu
[]

The GNU (or System V) archive format.

Bsd
[]

The BSD archive format.

Coff
[]

The Windows COFF archive format.

Trait Implementations

impl Clone for ArchiveKind[src][+]

impl Copy for ArchiveKind[src]

impl Debug for ArchiveKind[src][+]

impl Eq for ArchiveKind[src]

impl Hash for ArchiveKind[src][+]

impl PartialEq<ArchiveKind> for ArchiveKind[src][+]

impl StructuralEq for ArchiveKind[src]

impl StructuralPartialEq for ArchiveKind[src]

Auto Trait Implementations

impl Send for ArchiveKind

impl Sync for ArchiveKind

impl Unpin for ArchiveKind

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.