Enum elf_utilities::section::TYPE
source · [−]pub enum TYPE {
Show 19 variants
NULL,
PROGBITS,
SYMTAB,
STRTAB,
RELA,
HASH,
DYNAMIC,
NOTE,
NOBITS,
REL,
SHLIB,
DYNSYM,
INITARRAY,
FINIARRAY,
PREINITARRAY,
GROUP,
SYMTABSHNDX,
NUM,
ANY(Elf64Word),
}Variants
NULL
Section header table entry unused
PROGBITS
Program data
SYMTAB
Symbol table
STRTAB
String table
RELA
Relocation entries with addends
HASH
Symbol hash table
DYNAMIC
Dynamic linking information
NOTE
Notes
NOBITS
Program space with no data(.bss)
REL
Relocation entries, no addends
SHLIB
Reserved
DYNSYM
Dynamic linker symbol table
INITARRAY
Array of constructors
FINIARRAY
Array of destructors
PREINITARRAY
Array of preconstructors
GROUP
Section group
SYMTABSHNDX
Extended section indices
NUM
Number of defined types
ANY(Elf64Word)
Implementations
Trait Implementations
sourceimpl Ord for TYPE
impl Ord for TYPE
sourceimpl PartialOrd<TYPE> for TYPE
impl PartialOrd<TYPE> for TYPE
sourcefn partial_cmp(&self, other: &TYPE) -> Option<Ordering>
fn partial_cmp(&self, other: &TYPE) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Eq for TYPE
impl StructuralEq for TYPE
impl StructuralPartialEq for TYPE
Auto Trait Implementations
impl RefUnwindSafe for TYPE
impl Send for TYPE
impl Sync for TYPE
impl Unpin for TYPE
impl UnwindSafe for TYPE
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more