Struct ezpdb::symbol_types::ParsedPdb[][src]

pub struct ParsedPdb {
    pub path: PathBuf,
    pub assembly_info: AssemblyInfo,
    pub public_symbols: Vec<PublicSymbol>,
    pub types: HashMap<TypeIndexNumber, TypeRef>,
    pub procedures: Vec<Procedure>,
    pub global_data: Vec<Data>,
    pub debug_modules: Vec<DebugModule>,
    // some fields omitted
}

Represents a PDB that has been fully parsed

Fields

path: PathBufassembly_info: AssemblyInfopublic_symbols: Vec<PublicSymbol>types: HashMap<TypeIndexNumber, TypeRef>procedures: Vec<Procedure>global_data: Vec<Data>debug_modules: Vec<DebugModule>

Implementations

impl ParsedPdb[src]

pub fn new(path: PathBuf) -> Self[src]

Constructs a new ParsedPdb with the corresponding path

Trait Implementations

impl Debug for ParsedPdb[src]

Auto Trait Implementations

impl !RefUnwindSafe for ParsedPdb

impl !Send for ParsedPdb

impl !Sync for ParsedPdb

impl Unpin for ParsedPdb

impl !UnwindSafe for ParsedPdb

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.