[][src]Struct gimli::read::DebugLocLists

pub struct DebugLocLists<R> { /* fields omitted */ }

The DebugLocLists struct represents the DWARF data found in the .debug_loclists section.

Methods

impl<'input, Endian> DebugLocLists<EndianSlice<'input, Endian>> where
    Endian: Endianity
[src]

pub fn new(section: &'input [u8], endian: Endian) -> Self[src]

Construct a new DebugLocLists instance from the data in the .debug_loclists section.

It is the caller's responsibility to read the .debug_loclists section and present it as a &[u8] slice. That means using some ELF loader on Linux, a Mach-O loader on OSX, etc.

use gimli::{DebugLocLists, LittleEndian};

let debug_loclists = DebugLocLists::new(read_debug_loclists_section_somehow(), LittleEndian);

Trait Implementations

impl<R> Section<R> for DebugLocLists<R>[src]

fn section_name() -> &'static str[src]

Returns the ELF section name for this type.

fn load<F, E>(f: F) -> Result<Self, E> where
    F: FnOnce(SectionId) -> Result<R, E>, 
[src]

Try to load the section using the given loader function.

fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
    R: Reader
[src]

Returns the Reader for this section.

impl<R: Copy> Copy for DebugLocLists<R>[src]

impl<R: Debug> Debug for DebugLocLists<R>[src]

impl<R> From<R> for DebugLocLists<R>[src]

impl<R: Clone> Clone for DebugLocLists<R>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<R: Default> Default for DebugLocLists<R>[src]

Auto Trait Implementations

impl<R> Send for DebugLocLists<R> where
    R: Send

impl<R> Sync for DebugLocLists<R> where
    R: Sync

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

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

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

The type returned in the event of a conversion error.

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.