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: u32§signature: u32§age: u32§pdb_file_name: Vec<u8>The PDB filename as a zero-terminated byte string
Trait Implementations§
Source§impl Clone for CV_INFO_PDB20
impl Clone for CV_INFO_PDB20
Source§fn clone(&self) -> CV_INFO_PDB20
fn clone(&self) -> CV_INFO_PDB20
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CV_INFO_PDB20
impl Debug for CV_INFO_PDB20
Auto Trait Implementations§
impl Freeze for CV_INFO_PDB20
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more