#[repr(u32)]pub enum SectionType {
Show 59 variants
Invalid = 0,
Code = 1,
Container = 2,
Data = 3,
DataCString = 4,
DataCStringPointers = 5,
DataSymbolAddress = 6,
Data4 = 7,
Data8 = 8,
Data16 = 9,
DataPointers = 10,
Debug = 11,
ZeroFill = 12,
DataObjCMessageRefs = 13,
DataObjCCFStrings = 14,
DWARFDebugAbbrev = 15,
DWARFDebugAddr = 16,
DWARFDebugAranges = 17,
DWARFDebugFrame = 18,
DWARFDebugInfo = 19,
DWARFDebugLine = 20,
DWARFDebugLoc = 21,
DWARFDebugMacInfo = 22,
DWARFDebugMacro = 23,
DWARFDebugPubNames = 24,
DWARFDebugPubTypes = 25,
DWARFDebugRanges = 26,
DWARFDebugStr = 27,
DWARFDebugStrOffsets = 28,
DWARFAppleNames = 29,
DWARFAppleTypes = 30,
DWARFAppleNamespaces = 31,
DWARFAppleObjC = 32,
ELFSymbolTable = 33,
ELFDynamicSymbols = 34,
ELFRelocationEntries = 35,
ELFDynamicLinkInfo = 36,
EHFrame = 37,
ARMexidx = 38,
ARMextab = 39,
CompactUnwind = 40,
GoSymtab = 41,
AbsoluteAddress = 42,
DWARFGNUDebugAltLink = 43,
DWARFDebugTypes = 44,
DWARFDebugNames = 45,
Other = 46,
DWARFDebugLineStr = 47,
DWARFDebugRngLists = 48,
DWARFDebugLocLists = 49,
DWARFDebugAbbrevDwo = 50,
DWARFDebugInfoDwo = 51,
DWARFDebugStrDwo = 52,
DWARFDebugStrOffsetsDwo = 53,
DWARFDebugTypesDwo = 54,
DWARFDebugRngListsDwo = 55,
DWARFDebugLocDwo = 56,
DWARFDebugLocListsDwo = 57,
DWARFDebugTuIndex = 58,
}
Variants§
Invalid = 0
Code = 1
Container = 2
The section contains child sections.
Data = 3
DataCString = 4
Inlined C string data.
DataCStringPointers = 5
Pointers to C string data.
DataSymbolAddress = 6
Address of a symbol in the symbol table.
Data4 = 7
Data8 = 8
Data16 = 9
DataPointers = 10
Debug = 11
ZeroFill = 12
DataObjCMessageRefs = 13
Pointer to function pointer + selector.
DataObjCCFStrings = 14
Objective-C const CFString/NSString objects.
DWARFDebugAbbrev = 15
DWARFDebugAddr = 16
DWARFDebugAranges = 17
DWARFDebugFrame = 18
DWARFDebugInfo = 19
DWARFDebugLine = 20
DWARFDebugLoc = 21
DWARFDebugMacInfo = 22
DWARFDebugMacro = 23
DWARFDebugPubNames = 24
DWARFDebugPubTypes = 25
DWARFDebugRanges = 26
DWARFDebugStr = 27
DWARFDebugStrOffsets = 28
DWARFAppleNames = 29
DWARFAppleTypes = 30
DWARFAppleNamespaces = 31
DWARFAppleObjC = 32
ELFSymbolTable = 33
ELF SHT_SYMTAB
section.
ELFDynamicSymbols = 34
ELF SHT_DYNSYM1
section.
ELFRelocationEntries = 35
ELF SHT_REL
or SHT_RELA
section.
ELFDynamicLinkInfo = 36
ELF SHT_DYNAMIC
section.
EHFrame = 37
ARMexidx = 38
ARMextab = 39
CompactUnwind = 40
Compact unwind section in Mach-O, __TEXT,__unwind_info
.
GoSymtab = 41
AbsoluteAddress = 42
Dummy section for symbols with an absolute address.
DWARFGNUDebugAltLink = 43
DWARFDebugTypes = 44
DWARF .debug_types
section.
DWARFDebugNames = 45
DWARF v5 .debug_names
section.
Other = 46
DWARFDebugLineStr = 47
DWARF v5 .debug_line_str
section.
DWARFDebugRngLists = 48
DWARF v5 .debug_rnglists
section.
DWARFDebugLocLists = 49
DWARF v5 .debug_loclists
section.
DWARFDebugAbbrevDwo = 50
DWARFDebugInfoDwo = 51
DWARFDebugStrDwo = 52
DWARFDebugStrOffsetsDwo = 53
DWARFDebugTypesDwo = 54
DWARFDebugRngListsDwo = 55
DWARFDebugLocDwo = 56
DWARFDebugLocListsDwo = 57
DWARFDebugTuIndex = 58
Trait Implementations§
Source§impl Clone for SectionType
impl Clone for SectionType
Source§fn clone(&self) -> SectionType
fn clone(&self) -> SectionType
Returns a duplicate 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 SectionType
impl Debug for SectionType
Source§impl PartialEq for SectionType
impl PartialEq for SectionType
Source§impl PartialOrd for SectionType
impl PartialOrd for SectionType
impl Copy for SectionType
impl Eq for SectionType
impl StructuralPartialEq for SectionType
Auto Trait Implementations§
impl Freeze for SectionType
impl RefUnwindSafe for SectionType
impl Send for SectionType
impl Sync for SectionType
impl Unpin for SectionType
impl UnwindSafe for SectionType
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