[][src]Struct pdb::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 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]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.