[][src]Struct vmread::WinDll

pub struct WinDll {
    pub name: String,
    pub info: WinModule,
    pub export_list: Vec<WinExport>,
}

Represents a single Windows process module

Has basic information about the module in info, and a function to retrieve list of its exports.

Fields

name: Stringinfo: WinModuleexport_list: Vec<WinExport>

Methods

impl WinDll[src]

pub fn new(info: WinModule) -> WinDll[src]

pub fn refresh_exports(&mut self, proc: &WinProc, ctx: WinCtx) -> &mut Self[src]

Refresh the export list for the module

Arguments

  • proc - target process
  • ctx - vmread C context

Trait Implementations

impl Clone for WinDll[src]

Auto Trait Implementations

impl RefUnwindSafe for WinDll

impl !Send for WinDll

impl !Sync for WinDll

impl Unpin for WinDll

impl UnwindSafe for WinDll

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.