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

CodeView debug information in the current PDB 7.0 (“RSDS”) format.

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

Fields

cv_signature: u32

This will always be CvSignature::Pdb70

signature: GUID

A unique identifer for a module created on first build.

age: u32

A counter, incremented for each rebuild that updates the PDB file.

pdb_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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.