Struct CodeView
struct CodeView<'data> { ... }
PDB information from the debug directory in a PE file.
Implementations
impl<'data> CodeView<'data>
fn path(self: &Self) -> &'data [u8]The path to the PDB as stored in CodeView.
fn age(self: &Self) -> u32The age of the PDB.
fn guid(self: &Self) -> [u8; 16]The GUID of the PDB.
impl<'data> Clone for CodeView<'data>
fn clone(self: &Self) -> CodeView<'data>
impl<'data> Copy for CodeView<'data>
impl<'data> Debug for CodeView<'data>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'data> Eq for CodeView<'data>
impl<'data> Freeze for CodeView<'data>
impl<'data> PartialEq for CodeView<'data>
fn eq(self: &Self, other: &CodeView<'data>) -> bool
impl<'data> RefUnwindSafe for CodeView<'data>
impl<'data> Send for CodeView<'data>
impl<'data> StructuralPartialEq for CodeView<'data>
impl<'data> Sync for CodeView<'data>
impl<'data> Unpin for CodeView<'data>
impl<'data> UnwindSafe for CodeView<'data>
impl<T> Any for CodeView<'data>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for CodeView<'data>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for CodeView<'data>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for CodeView<'data>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for CodeView<'data>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for CodeView<'data>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for CodeView<'data>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for CodeView<'data>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for CodeView<'data>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>