pub enum DynamicTag {
Show 38 variants
Null,
Needed,
PltRelSize,
PltGot,
Hash,
StringTableAddress,
SymbolTableAddress,
RelaTableAddress,
RelaTableSize,
RelaEntrySize,
StringTableSize,
SymbolEntrySize,
InitAddress,
FiniAddress,
SharedObjectName,
Rpath,
Symbolic,
RelTableAddress,
RelTableSize,
RelEntrySize,
PltRel,
Debug,
TextRel,
JmpRel,
BindNow,
InitArray,
FiniArray,
InitArraySize,
FiniArraySize,
Runpath,
Flags,
PreInitArray,
PreInitArraySize,
SymbolTableIndex,
RelrTableSize,
RelrTableAddress,
RelrEntrySize,
Other(u32),
}Expand description
Dynamic table tag.
Variants§
Null
End of the table.
Needed
String table offset to the name of the needed library.
PltRelSize
PltGot
Hash
The address of the symbol hash table.
StringTableAddress
The address of the string table.
SymbolTableAddress
The address of the symbol table.
RelaTableAddress
The address of the relocation with addends table.
RelaTableSize
The size in bytes of the relocation with addends table.
RelaEntrySize
Relocation with addends entry size.
StringTableSize
The size in bytes of the string table.
SymbolEntrySize
Symbol table entry size.
InitAddress
FiniAddress
String table offset to the name of the shared object.
Rpath
String table offset to the library search path.
Symbolic
RelTableAddress
The address of relocation table.
RelTableSize
The size in bytes of the relocation table.
RelEntrySize
Relocation entry size.
PltRel
Debug
TextRel
JmpRel
BindNow
InitArray
FiniArray
InitArraySize
FiniArraySize
Runpath
String table offset to the library search path.
Flags
PreInitArray
PreInitArraySize
SymbolTableIndex
RelrTableSize
The size in bytes of the relative relocation table.
RelrTableAddress
The address of relative relocation table.
RelrEntrySize
Relative relocation entry size.
Other(u32)
Other.
Implementations§
Trait Implementations§
Source§impl Clone for DynamicTag
impl Clone for DynamicTag
Source§fn clone(&self) -> DynamicTag
fn clone(&self) -> DynamicTag
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more