[]Enum symbolic::debuginfo::dwarf::gimli::SectionId

pub enum SectionId {
    DebugAbbrev,
    DebugAddr,
    DebugAranges,
    DebugFrame,
    EhFrame,
    EhFrameHdr,
    DebugInfo,
    DebugLine,
    DebugLineStr,
    DebugLoc,
    DebugLocLists,
    DebugMacinfo,
    DebugMacro,
    DebugPubNames,
    DebugPubTypes,
    DebugRanges,
    DebugRngLists,
    DebugStr,
    DebugStrOffsets,
    DebugTypes,
}

An identifier for a DWARF section.

Variants

DebugAbbrev

The .debug_abbrev section.

DebugAddr

The .debug_addr section.

DebugAranges

The .debug_aranges section.

DebugFrame

The .debug_frame section.

EhFrame

The .eh_frame section.

EhFrameHdr

The .eh_frame_hdr section.

DebugInfo

The .debug_info section.

DebugLine

The .debug_line section.

DebugLineStr

The .debug_line_str section.

DebugLoc

The .debug_loc section.

DebugLocLists

The .debug_loclists section.

DebugMacinfo

The .debug_macinfo section.

DebugMacro

The .debug_macro section.

DebugPubNames

The .debug_pubnames section.

DebugPubTypes

The .debug_pubtypes section.

DebugRanges

The .debug_ranges section.

DebugRngLists

The .debug_rnglists section.

DebugStr

The .debug_str section.

DebugStrOffsets

The .debug_str_offsets section.

DebugTypes

The .debug_types section.

Implementations

impl SectionId

pub fn name(self) -> &'static str

Returns the ELF section name for this kind.

pub fn dwo_name(self) -> Option<&'static str>

Returns the ELF section name for this kind, when found in a .dwo file.

Trait Implementations

impl Clone for SectionId

impl Copy for SectionId

impl Debug for SectionId

impl Eq for SectionId

impl Hash for SectionId

impl Ord for SectionId

impl PartialEq<SectionId> for SectionId

impl PartialOrd<SectionId> for SectionId

impl StructuralEq for SectionId

impl StructuralPartialEq for SectionId

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RuleType for T where
    T: Eq + Ord + Copy + Debug + Hash
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.