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

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

Set the .eh_frame_hdr section base address.

Set the .eh_frame section base address.

Set the .text section base address.

Set the .got section base address.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.