RelocatedExec

Struct RelocatedExec 

Source
pub struct RelocatedExec<'scope> { /* private fields */ }
Expand description

A executable file that has been relocated

Implementations§

Source§

impl RelocatedExec<'_>

Source

pub fn entry(&self) -> usize

Methods from Deref<Target = CoreComponent>§

Source

pub fn downgrade(&self) -> CoreComponentRef

Creates a new Weak pointer to this allocation.

Source

pub fn user_data(&self) -> &UserData

Gets user data from the elf object.

Source

pub fn strong_count(&self) -> usize

Gets the number of strong references to the elf object.

Source

pub fn weak_count(&self) -> usize

Gets the number of weak references to the elf object.

Source

pub fn name(&self) -> &str

Gets the name of the elf object.

Source

pub fn cname(&self) -> &CStr

Gets the C-style name of the elf object.

Source

pub fn shortname(&self) -> &str

Gets the short name of the elf object.

Source

pub fn base(&self) -> usize

Gets the base address of the elf object.

Source

pub fn map_len(&self) -> usize

Gets the memory length of the elf object map.

Source

pub fn phdrs(&self) -> &[ElfPhdr]

Gets the program headers of the elf object.

Source

pub fn dynamic(&self) -> Option<NonNull<Dyn>>

Gets the address of the dynamic section.

Source

pub fn needed_libs(&self) -> &[&str]

Gets the needed libs’ name of the elf object.

Source

pub fn symtab(&self) -> Option<&SymbolTable>

Gets the symbol table.

Trait Implementations§

Source§

impl<'scope> Clone for RelocatedExec<'scope>

Source§

fn clone(&self) -> RelocatedExec<'scope>

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for RelocatedExec<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for RelocatedExec<'_>

Source§

type Target = CoreComponent

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.

Auto Trait Implementations§

§

impl<'scope> Freeze for RelocatedExec<'scope>

§

impl<'scope> !RefUnwindSafe for RelocatedExec<'scope>

§

impl<'scope> Send for RelocatedExec<'scope>

§

impl<'scope> Sync for RelocatedExec<'scope>

§

impl<'scope> Unpin for RelocatedExec<'scope>

§

impl<'scope> !UnwindSafe for RelocatedExec<'scope>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

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>,

Source§

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>,

Source§

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.