[][src]Struct vdso::Vdso

pub struct Vdso<'a>(_);

This structure represents the Linux vDSO

Implementations

impl Vdso<'static>[src]

pub fn locate() -> Option<Self>[src]

Locates the vDSO by parsing the auxiliary vectors

impl<'a> Vdso<'a>[src]

pub fn lookup(&self, name: &str) -> Option<&'a Symbol>[src]

Find a vDSO symbol by its name

The return type is essentially a void pointer. You will need to cast it for the type of the symbol you are looking up.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Vdso<'a>

impl<'a> Send for Vdso<'a>

impl<'a> Sync for Vdso<'a>

impl<'a> Unpin for Vdso<'a>

impl<'a> UnwindSafe for Vdso<'a>

Blanket Implementations

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

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

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

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.