Struct gimli::read::DebugTuIndex
source · [−]pub struct DebugTuIndex<R> { /* private fields */ }
Expand description
The data in the .debug_tu_index
section of a .dwp
file.
This section contains the type unit index.
Implementations
sourceimpl<'input, Endian> DebugTuIndex<EndianSlice<'input, Endian>> where
Endian: Endianity,
impl<'input, Endian> DebugTuIndex<EndianSlice<'input, Endian>> where
Endian: Endianity,
Trait Implementations
sourceimpl<R: Clone> Clone for DebugTuIndex<R>
impl<R: Clone> Clone for DebugTuIndex<R>
sourcefn clone(&self) -> DebugTuIndex<R>
fn clone(&self) -> DebugTuIndex<R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<R: Debug> Debug for DebugTuIndex<R>
impl<R: Debug> Debug for DebugTuIndex<R>
sourceimpl<R: Default> Default for DebugTuIndex<R>
impl<R: Default> Default for DebugTuIndex<R>
sourcefn default() -> DebugTuIndex<R>
fn default() -> DebugTuIndex<R>
Returns the “default value” for a type. Read more
sourceimpl<R> From<R> for DebugTuIndex<R>
impl<R> From<R> for DebugTuIndex<R>
sourceimpl<R> Section<R> for DebugTuIndex<R>
impl<R> Section<R> for DebugTuIndex<R>
sourcefn section_name() -> &'static str
fn section_name() -> &'static str
Returns the ELF section name for this type.
sourcefn dwo_section_name() -> Option<&'static str>
fn dwo_section_name() -> Option<&'static str>
Returns the ELF section name (if any) for this type when used in a dwo file. Read more
sourcefn load<F, E>(f: F) -> Result<Self, E> where
F: FnOnce(SectionId) -> Result<R, E>,
fn load<F, E>(f: F) -> Result<Self, E> where
F: FnOnce(SectionId) -> Result<R, E>,
Try to load the section using the given loader function.
sourcefn dwp_range(&self, offset: u32, size: u32) -> Result<Self> where
R: Reader,
fn dwp_range(&self, offset: u32, size: u32) -> Result<Self> where
R: Reader,
Returns the subrange of the section that is the contribution of
a unit in a .dwp
file. Read more
sourcefn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
Returns the Reader
for this section.
impl<R: Copy> Copy for DebugTuIndex<R>
Auto Trait Implementations
impl<R> RefUnwindSafe for DebugTuIndex<R> where
R: RefUnwindSafe,
impl<R> Send for DebugTuIndex<R> where
R: Send,
impl<R> Sync for DebugTuIndex<R> where
R: Sync,
impl<R> Unpin for DebugTuIndex<R> where
R: Unpin,
impl<R> UnwindSafe for DebugTuIndex<R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more