[][src]Enum elf_utilities::header::elf_type::ELFTYPE

pub enum ELFTYPE {
    NONE,
    REL,
    EXEC,
    DYN,
    CORE,
    NUM,
    LOOS,
    HIOS,
    LOPROC,
    HIPROC,
    ANY(u16),
}

Variants

NONE
REL
EXEC
DYN
CORE
NUM
LOOS
HIOS
LOPROC
HIPROC
ANY(u16)

Implementations

impl ELFTYPE[src]

pub fn to_bytes(&self) -> u16[src]

Trait Implementations

impl Debug for ELFTYPE[src]

impl Eq for ELFTYPE[src]

impl From<u16> for ELFTYPE[src]

impl Ord for ELFTYPE[src]

impl PartialEq<ELFTYPE> for ELFTYPE[src]

impl PartialOrd<ELFTYPE> for ELFTYPE[src]

impl StructuralEq for ELFTYPE[src]

impl StructuralPartialEq for ELFTYPE[src]

Auto Trait Implementations

impl RefUnwindSafe for ELFTYPE

impl Send for ELFTYPE

impl Sync for ELFTYPE

impl Unpin for ELFTYPE

impl UnwindSafe for ELFTYPE

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, 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.