[][src]Enum elf_rs::ElfType

pub enum ElfType {
    ET_NONE,
    ET_REL,
    ET_EXEC,
    ET_DYN,
    ET_CORE,
    ET_LOOS,
    ET_HIOS,
    ET_LOPROC,
    ET_HIPROC,
    Unknown(u16),
}

Variants

ET_NONEET_RELET_EXECET_DYNET_COREET_LOOSET_HIOSET_LOPROCET_HIPROCUnknown(u16)

Trait Implementations

impl PartialEq<ElfType> for ElfType[src]

impl Eq for ElfType[src]

impl Copy for ElfType[src]

impl From<u16> for ElfType[src]

impl Debug for ElfType[src]

impl Clone for ElfType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ElfType

impl Sync for ElfType

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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