[][src]Struct gimli::read::BaseAddresses

pub struct BaseAddresses {
    pub eh_frame_hdr: SectionBaseAddresses,
    pub eh_frame: SectionBaseAddresses,
}

Optional base addresses for the relative DW_EH_PE_* encoded pointers.

During CIE/FDE parsing, if a relative pointer is encountered for a base address that is unknown, an Err will be returned.

use gimli::BaseAddresses;

let bases = BaseAddresses::default()
    .set_eh_frame_hdr(address_of_eh_frame_hdr_section_in_memory)
    .set_eh_frame(address_of_eh_frame_section_in_memory)
    .set_text(address_of_text_section_in_memory)
    .set_got(address_of_got_section_in_memory);

Fields

eh_frame_hdr: SectionBaseAddresses

The base addresses to use for pointers in the .eh_frame_hdr section.

eh_frame: SectionBaseAddresses

The base addresses to use for pointers in the .eh_frame section.

Implementations

impl BaseAddresses[src]

pub fn set_eh_frame_hdr(self, addr: u64) -> Self[src]

Set the .eh_frame_hdr section base address.

pub fn set_eh_frame(self, addr: u64) -> Self[src]

Set the .eh_frame section base address.

pub fn set_text(self, addr: u64) -> Self[src]

Set the .text section base address.

pub fn set_got(self, addr: u64) -> Self[src]

Set the .got section base address.

Trait Implementations

impl Clone for BaseAddresses[src]

impl Debug for BaseAddresses[src]

impl Default for BaseAddresses[src]

impl Eq for BaseAddresses[src]

impl PartialEq<BaseAddresses> for BaseAddresses[src]

impl StructuralEq for BaseAddresses[src]

impl StructuralPartialEq for BaseAddresses[src]

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.