pub enum CodeView<'a> {
Cv20 {
image: &'a IMAGE_DEBUG_CV_INFO_PDB20,
pdb_file_name: &'a CStr,
},
Cv70 {
image: &'a IMAGE_DEBUG_CV_INFO_PDB70,
pdb_file_name: &'a CStr,
},
}Expand description
CodeView information.
Variants§
Implementations§
Trait Implementations§
impl<'a> Copy for CodeView<'a>
Auto Trait Implementations§
impl<'a> Freeze for CodeView<'a>
impl<'a> RefUnwindSafe for CodeView<'a>
impl<'a> Send for CodeView<'a>
impl<'a> Sync for CodeView<'a>
impl<'a> Unpin for CodeView<'a>
impl<'a> UnwindSafe for CodeView<'a>
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