Struct gimli::read::BaseAddresses [−][src]
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: SectionBaseAddressesThe base addresses to use for pointers in the .eh_frame_hdr section.
eh_frame: SectionBaseAddressesThe 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]
fn clone(&self) -> BaseAddresses[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for BaseAddresses[src]
impl Default for BaseAddresses[src]
fn default() -> BaseAddresses[src]
impl Eq for BaseAddresses[src]
impl PartialEq<BaseAddresses> for BaseAddresses[src]
fn eq(&self, other: &BaseAddresses) -> bool[src]
fn ne(&self, other: &BaseAddresses) -> bool[src]
impl StructuralEq for BaseAddresses[src]
impl StructuralPartialEq for BaseAddresses[src]
Auto Trait Implementations
impl RefUnwindSafe for BaseAddresses
impl Send for BaseAddresses
impl Sync for BaseAddresses
impl Unpin for BaseAddresses
impl UnwindSafe for BaseAddresses
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,