[][src]Enum elf_utilities::section::section_type::SHTYPE

pub enum SHTYPE {
    NULL,
    PROGBITS,
    SYMTAB,
    STRTAB,
    RELA,
    HASH,
    DYNAMIC,
    NOTE,
    NOBITS,
    REL,
    SHLIB,
    DYNSYM,
    NUM,
    ANY(Elf64Word),
}

Variants

NULL
PROGBITS
SYMTAB
STRTAB
RELA
HASH
DYNAMIC
NOTE
NOBITS
REL
SHLIB
DYNSYM
NUM

Implementations

impl SHTYPE[src]

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

Trait Implementations

impl Debug for SHTYPE[src]

impl Eq for SHTYPE[src]

impl From<u32> for SHTYPE[src]

impl Ord for SHTYPE[src]

impl PartialEq<SHTYPE> for SHTYPE[src]

impl PartialOrd<SHTYPE> for SHTYPE[src]

impl StructuralEq for SHTYPE[src]

impl StructuralPartialEq for SHTYPE[src]

Auto Trait Implementations

impl RefUnwindSafe for SHTYPE

impl Send for SHTYPE

impl Sync for SHTYPE

impl Unpin for SHTYPE

impl UnwindSafe for SHTYPE

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.