Struct Dl_info

#[repr(C)]
pub struct Dl_info { pub dli_fname: *const c_char, pub dli_fbase: *mut c_void, pub dli_sname: *const c_char, pub dli_saddr: *mut c_void }

Fields

dli_fname: *const c_char
dli_fbase: *mut c_void
dli_sname: *const c_char
dli_saddr: *mut c_void

Trait Implementations

impl Clone for Dl_info

fn clone(&self) -> Dl_info

impl Copy for Dl_info

impl Debug for Dl_info

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

impl Eq for Dl_info

impl Hash for Dl_info

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for Dl_info

fn eq(&self, other: &Dl_info) -> bool

impl StructuralPartialEq for Dl_info

Auto Trait Implementations

impl !Send for Dl_info

impl !Sync for Dl_info

impl Freeze for Dl_info

impl RefUnwindSafe for Dl_info

impl Unpin for Dl_info

impl UnsafeUnpin for Dl_info

impl UnwindSafe for Dl_info

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

impl<T> CloneToUninit for Dl_info where T: Clone,

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

impl<T> From<T> for Dl_info

fn from(t: T) -> T

Returns the argument unchanged.

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

fn into(self) -> U

Calls U::from(self).

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

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

type Error = never;
fn try_from(value: U) -> Result<T, never>

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

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