pub enum DynamicSectionType {
Show 15 variants
DT_NULL,
DT_PLTRELSZ,
DT_PLTGOT,
DT_PLTREL,
DT_STRTAB,
DT_SYMTAB,
DT_SYMENT,
DT_RELA,
DT_RELASZ,
DT_RELAENT,
DT_REL,
DT_RELSZ,
DT_RELENT,
DT_STRSZ,
DT_JMPREL,
}
Expand description
Section type enumeration
Variants§
DT_NULL
DT_PLTRELSZ
DT_PLTGOT
DT_PLTREL
DT_STRTAB
DT_SYMTAB
DT_SYMENT
DT_RELA
DT_RELASZ
DT_RELAENT
DT_REL
DT_RELSZ
DT_RELENT
DT_STRSZ
DT_JMPREL
Trait Implementations§
Source§impl Clone for DynamicSectionType
impl Clone for DynamicSectionType
Source§fn clone(&self) -> DynamicSectionType
fn clone(&self) -> DynamicSectionType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DynamicSectionType
impl Debug for DynamicSectionType
Source§impl PartialEq for DynamicSectionType
impl PartialEq for DynamicSectionType
Source§impl PartialOrd for DynamicSectionType
impl PartialOrd for DynamicSectionType
Source§impl TryFrom<u64> for DynamicSectionType
impl TryFrom<u64> for DynamicSectionType
Source§type Error = DynTypeError
type Error = DynTypeError
The type returned in the event of a conversion error.
impl Copy for DynamicSectionType
impl StructuralPartialEq for DynamicSectionType
Auto Trait Implementations§
impl Freeze for DynamicSectionType
impl RefUnwindSafe for DynamicSectionType
impl Send for DynamicSectionType
impl Sync for DynamicSectionType
impl Unpin for DynamicSectionType
impl UnwindSafe for DynamicSectionType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more