Struct gimli::read::UnitIndexSection
source · pub struct UnitIndexSection {
pub section: SectionId,
pub offset: u32,
pub size: u32,
}
Expand description
Information about a unit’s contribution to a section in a .dwp
file.
Fields§
§section: SectionId
The section kind.
offset: u32
The base offset of the unit’s contribution to the section.
size: u32
The size of the unit’s contribution to the section.
Trait Implementations§
source§impl Clone for UnitIndexSection
impl Clone for UnitIndexSection
source§fn clone(&self) -> UnitIndexSection
fn clone(&self) -> UnitIndexSection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UnitIndexSection
impl Debug for UnitIndexSection
source§impl PartialEq<UnitIndexSection> for UnitIndexSection
impl PartialEq<UnitIndexSection> for UnitIndexSection
source§fn eq(&self, other: &UnitIndexSection) -> bool
fn eq(&self, other: &UnitIndexSection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for UnitIndexSection
impl Eq for UnitIndexSection
impl StructuralEq for UnitIndexSection
impl StructuralPartialEq for UnitIndexSection
Auto Trait Implementations§
impl RefUnwindSafe for UnitIndexSection
impl Send for UnitIndexSection
impl Sync for UnitIndexSection
impl Unpin for UnitIndexSection
impl UnwindSafe for UnitIndexSection
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more