[][src]Struct dlopen::raw::AddressInfo

pub struct AddressInfo {
    pub dll_path: String,
    pub dll_base_addr: *const (),
    pub overlapping_symbol: Option<OverlappingSymbol>,
}

Container for information about an address obtained from dynamic load library.

Fields

dll_path: String

Path to the library that is the source of this symbol.

dll_base_addr: *const ()

Base address of the library that is the source of this symbol.

overlapping_symbol: Option<OverlappingSymbol>

Information about the overlapping symbol from the dynamic load library.

The information is optional since the given address may not overlap with any symbol.

Trait Implementations

impl Debug for AddressInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]