Struct symbolic::debuginfo::dwarf::gimli::SectionBaseAddresses[]

pub struct SectionBaseAddresses {
    pub section: Option<u64>,
    pub text: Option<u64>,
    pub data: Option<u64>,
}

Optional base addresses for the relative DW_EH_PE_* encoded pointers in a particular section.

See BaseAddresses for methods that are helpful in setting these addresses.

Fields

section: Option<u64>

The address of the section containing the pointer.

text: Option<u64>

The base address for text relative pointers. This is generally the address of the .text section.

data: Option<u64>

The base address for data relative pointers.

For pointers in the .eh_frame_hdr section, this is the address of the .eh_frame_hdr section

For pointers in the .eh_frame section, this is generally the global pointer, such as the address of the .got section.

Trait Implementations

impl Clone for SectionBaseAddresses

impl Debug for SectionBaseAddresses

impl Default for SectionBaseAddresses

impl Eq for SectionBaseAddresses

impl PartialEq<SectionBaseAddresses> for SectionBaseAddresses

impl StructuralEq for SectionBaseAddresses

impl StructuralPartialEq for SectionBaseAddresses

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.