Enum elf_utilities::segment::TYPE
source · [−]pub enum TYPE {
Show 13 variants
NULL,
LOAD,
DYNAMIC,
INTERP,
NOTE,
SHLIB,
PHDR,
TLS,
NUM,
GNUEHFRAME,
GNUSTACK,
GNURELRO,
ANY(Elf64Word),
}Variants
NULL
Program header table entry unused
LOAD
Loadable program segment
DYNAMIC
dynamic linking information
INTERP
Program interpreter
NOTE
Auxiliary information
SHLIB
Reserved
PHDR
Entry for header table itself
TLS
Thread-local storage segment
NUM
Number of defined types
GNUEHFRAME
GCC .eh_frame_hdr segment
GNUSTACK
Indicates stack executability
GNURELRO
Read-only after relocation
ANY(Elf64Word)
User-defined values
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