Struct gimli::read::PubNamesEntry
source · [−]pub struct PubNamesEntry<R: Reader> { /* private fields */ }
Expand description
A single parsed pubname.
Implementations
sourceimpl<R: Reader> PubNamesEntry<R>
impl<R: Reader> PubNamesEntry<R>
sourcepub fn unit_header_offset(&self) -> DebugInfoOffset<R::Offset>
pub fn unit_header_offset(&self) -> DebugInfoOffset<R::Offset>
Returns the offset into the .debug_info section for the header of the compilation unit which contains this name.
sourcepub fn die_offset(&self) -> UnitOffset<R::Offset>
pub fn die_offset(&self) -> UnitOffset<R::Offset>
Returns the offset into the compilation unit for the debugging information entry which has this name.
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for PubNamesEntry<R> where
R: RefUnwindSafe,
<R as Reader>::Offset: RefUnwindSafe,
impl<R> Send for PubNamesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Sync for PubNamesEntry<R> where
R: Sync,
<R as Reader>::Offset: Sync,
impl<R> Unpin for PubNamesEntry<R> where
R: Unpin,
<R as Reader>::Offset: Unpin,
impl<R> UnwindSafe for PubNamesEntry<R> where
R: UnwindSafe,
<R as Reader>::Offset: 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