[][src]Enum 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[src][]

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

Returns the ELF section name for this kind.

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

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

Trait Implementations

impl Clone for SectionId[src][+]

impl Copy for SectionId[src]

impl Debug for SectionId[src][+]

impl Eq for SectionId[src]

impl Hash for SectionId[src][+]

impl Ord for SectionId[src][+]

impl PartialEq<SectionId> for SectionId[src][+]

impl PartialOrd<SectionId> for SectionId[src][+]

impl StructuralEq for SectionId[src]

impl StructuralPartialEq for SectionId[src]

Auto Trait Implementations

impl Send for SectionId

impl Sync for SectionId

impl Unpin for SectionId

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> 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.