pub enum SectionType {
}
Variants§
Null
The first section in a valid ELF’s section table will be a null section. It does not detail a real section.
ProgBits
Contains information defined by the program.
SymTab
Contains a symbol table.
StrTab
Contains a string table.
Rela
Contains “Rela”-type relocations.
Hash
Contains a symbol hash table.
Dynamic
Contains tables used during dynamic linking.
Note
Contains note information.
NoBits
Defines a section as containing uninitialized space. This section does not take up any
space in the file and is usually loaded with 0
s during program loading.
Rel
Contains “Rel”-type relocations.
ShLib
Reserved by the spec.
DynSym
Contains a dynamic loader symbol table.
Os(u32)
A section with type 0x60000000
through 0x6fffffff
inclusive is defined to be
environment-specific.
Proc(u32)
A section with type 0x70000000
through 0x7fffffff
inclusive is defined to be
processor-specific.