Struct framehop::Module

source ·
pub struct Module<D> { /* private fields */ }
Expand description

Information about a module that is loaded in a process. You might know this under a different name, for example: (Shared) library, binary image, DSO (“Dynamic shared object”)

The unwinder needs to have an up-to-date list of modules so that it can match an absolute address to the right module, and so that it can find that module’s unwind information.

Type arguments:

  • D: The type for unwind section data. This allows carrying owned data on the module, e.g. Vec<u8>. But it could also be a wrapper around mapped memory from a file or a different process, for example. It just needs to provide a slice of bytes via its Deref implementation.

Implementations§

source§

impl<D: Deref<Target = [u8]>> Module<D>

source

pub fn new( name: String, avma_range: Range<u64>, base_avma: u64, section_info: impl ModuleSectionInfo<D> ) -> Self

source

pub fn avma_range(&self) -> Range<u64>

source

pub fn base_avma(&self) -> u64

source

pub fn name(&self) -> &str

Trait Implementations§

source§

impl<D> Clone for Module<D>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<D> RefUnwindSafe for Module<D>
where D: RefUnwindSafe,

§

impl<D> Send for Module<D>
where D: Send + Sync,

§

impl<D> Sync for Module<D>
where D: Send + Sync,

§

impl<D> Unpin for Module<D>

§

impl<D> UnwindSafe for Module<D>
where D: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.