pub struct CV_INFO_PDB20 {
    pub cv_signature: u32,
    pub cv_offset: u32,
    pub signature: u32,
    pub age: u32,
    pub pdb_file_name: Vec<u8, Global>,
}
Expand description

CodeView debug information in the older PDB 2.0 (“NB10”) format.

This struct is defined as variable-length in C with a trailing PDB filename member.

Fields

cv_signature: u32

This field will always be CvSignature::Pdb20.

cv_offset: u32signature: u32age: u32pdb_file_name: Vec<u8, Global>

The PDB filename as a zero-terminated byte string

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.