Struct gimli::read::PubTypesEntry
source · [−]pub struct PubTypesEntry<R: Reader> { /* private fields */ }
Expand description
A single parsed pubtype.
Implementations
sourceimpl<R: Reader> PubTypesEntry<R>
impl<R: Reader> PubTypesEntry<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 the type with 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 the type with this name.
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for PubTypesEntry<R> where
R: RefUnwindSafe,
<R as Reader>::Offset: RefUnwindSafe,
impl<R> Send for PubTypesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Sync for PubTypesEntry<R> where
R: Sync,
<R as Reader>::Offset: Sync,
impl<R> Unpin for PubTypesEntry<R> where
R: Unpin,
<R as Reader>::Offset: Unpin,
impl<R> UnwindSafe for PubTypesEntry<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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub 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