Struct minidump_common::format::CV_INFO_PDB20
source · [−]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>,
}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: u32This field will always be CvSignature::Pdb20.
cv_offset: u32signature: u32age: u32pdb_file_name: Vec<u8>The PDB filename as a zero-terminated byte string
Trait Implementations
sourceimpl Clone for CV_INFO_PDB20
impl Clone for CV_INFO_PDB20
sourcefn clone(&self) -> CV_INFO_PDB20
fn clone(&self) -> CV_INFO_PDB20
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CV_INFO_PDB20
impl Debug for CV_INFO_PDB20
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for CV_INFO_PDB20
impl<'a> TryFromCtx<'a, Endian, [u8]> for CV_INFO_PDB20
Auto Trait Implementations
impl RefUnwindSafe for CV_INFO_PDB20
impl Send for CV_INFO_PDB20
impl Sync for CV_INFO_PDB20
impl Unpin for CV_INFO_PDB20
impl UnwindSafe for CV_INFO_PDB20
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more