#[repr(C, align(16))]pub struct loaded_image {
pub image_handle: object_handle,
pub image_start: *const c_void,
pub image_len: usize,
pub dl_info: dl_phdr_info,
pub id: loaded_image_id,
}
Expand description
Information about a loaded program image or library
Fields§
§image_handle: object_handle
Object handle
image_start: *const c_void
Start of full image
image_len: usize
Length of full image
dl_info: dl_phdr_info
The dl_info for this loaded image
id: loaded_image_id
The ID for this loaded image
Trait Implementations§
source§impl Clone for loaded_image
impl Clone for loaded_image
source§fn clone(&self) -> loaded_image
fn clone(&self) -> loaded_image
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for loaded_image
impl Debug for loaded_image
impl Copy for loaded_image
Auto Trait Implementations§
impl Freeze for loaded_image
impl RefUnwindSafe for loaded_image
impl !Send for loaded_image
impl !Sync for loaded_image
impl Unpin for loaded_image
impl UnwindSafe for loaded_image
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)