[][src]Struct mozpdb::Module

pub struct Module<'m> { /* fields omitted */ }

Represents a module from the DBI stream.

A Module is a single item that contributes to the binary, such as an object file or import library.

Much of the useful information for a Module is stored in a separate stream in the PDB. It can be retrieved by calling PDB::module_info with a specific module.

Methods

impl<'m> Module<'m>[src]

pub fn info(&self) -> &DBIModuleInfo[src]

The DBIModuleInfo from the module info substream in the DBI stream.

pub fn module_name(&self) -> Cow<'m, str>[src]

The module name.

Usually either a full path to an object file or a string of the form Import:<dll name>.

pub fn object_file_name(&self) -> Cow<'m, str>[src]

The object file name.

May be the same as module_name for object files passed directly to the linker. For modules from static libraries, this is usually the full path to the archive.

Trait Implementations

impl<'m> Clone for Module<'m>[src]

impl<'m> Debug for Module<'m>[src]

Auto Trait Implementations

impl<'m> Send for Module<'m>

impl<'m> Sync for Module<'m>

impl<'m> Unpin for Module<'m>

impl<'m> UnwindSafe for Module<'m>

impl<'m> RefUnwindSafe for Module<'m>

Blanket Implementations

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

impl<T> From<T> for 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.

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]