Struct microsoft_dia::IDiaDataSource
[−]#[repr(transparent)]pub struct IDiaDataSource(_);Implementations
impl IDiaDataSource
impl IDiaDataSource
pub unsafe fn lastError(&self) -> Result<BSTR>
pub unsafe fn loadDataFromPdb<'a, P0>(&self, pdbpath: P0) -> Result<()>where
P0: Into<PCWSTR>,
pub unsafe fn loadAndValidateDataFromPdb<'a, P0>(
&self,
pdbpath: P0,
pcsig70: *const GUID,
sig: u32,
age: u32
) -> Result<()>where
P0: Into<PCWSTR>,
pub unsafe fn loadDataForExe<'a, P0, P1, P2>(
&self,
executable: P0,
searchpath: P1,
pcallback: P2
) -> Result<()>where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
P2: Into<InParam<'a, IUnknown>>,
pub unsafe fn loadDataFromIStream<'a, P0>(&self, pistream: P0) -> Result<()>where
P0: Into<InParam<'a, IStream>>,
pub unsafe fn openSession(&self) -> Result<IDiaSession>
pub unsafe fn loadDataFromCodeViewInfo<'a, P0, P1, P2>(
&self,
executable: P0,
searchpath: P1,
pbcvinfo: &[u8],
pcallback: P2
) -> Result<()>where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
P2: Into<InParam<'a, IUnknown>>,
pub unsafe fn loadDataFromMiscInfo<'a, P0, P1, P2>(
&self,
executable: P0,
searchpath: P1,
timestampexe: u32,
timestampdbg: u32,
sizeofexe: u32,
pbmiscinfo: &[u8],
pcallback: P2
) -> Result<()>where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
P2: Into<InParam<'a, IUnknown>>,
Trait Implementations
impl Clone for IDiaDataSource
impl Clone for IDiaDataSource
impl Debug for IDiaDataSource
impl Debug for IDiaDataSource
impl<'a> From<&'a IDiaDataSource> for &'a IUnknown
impl<'a> From<&'a IDiaDataSource> for &'a IUnknown
fn from(value: &'a IDiaDataSource) -> Self
fn from(value: &'a IDiaDataSource) -> Self
Converts to this type from the input type.
impl From<&IDiaDataSource> for IUnknown
impl From<&IDiaDataSource> for IUnknown
fn from(value: &IDiaDataSource) -> Self
fn from(value: &IDiaDataSource) -> Self
Converts to this type from the input type.
impl From<IDiaDataSource> for IUnknown
impl From<IDiaDataSource> for IUnknown
fn from(value: IDiaDataSource) -> Self
fn from(value: IDiaDataSource) -> Self
Converts to this type from the input type.
impl Interface for IDiaDataSource
impl Interface for IDiaDataSource
impl PartialEq<IDiaDataSource> for IDiaDataSource
impl PartialEq<IDiaDataSource> for IDiaDataSource
impl Vtable for IDiaDataSource
impl Vtable for IDiaDataSource
type Vtable = IDiaDataSource_Vtbl
sourcefn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.sourcefn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
impl Eq for IDiaDataSource
Auto Trait Implementations
impl RefUnwindSafe for IDiaDataSource
impl !Send for IDiaDataSource
impl !Sync for IDiaDataSource
impl Unpin for IDiaDataSource
impl UnwindSafe for IDiaDataSource
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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