Struct microsoft_dia::bindings::IDiaFrameData
#[repr(transparent)]pub struct IDiaFrameData(_);Implementations§
§impl IDiaFrameData
impl IDiaFrameData
pub unsafe fn addressSection(&self) -> Result<u32>
pub unsafe fn addressOffset(&self) -> Result<u32>
pub unsafe fn relativeVirtualAddress(&self) -> Result<u32>
pub unsafe fn virtualAddress(&self) -> Result<u64>
pub unsafe fn lengthBlock(&self) -> Result<u32>
pub unsafe fn lengthLocals(&self) -> Result<u32>
pub unsafe fn lengthParams(&self) -> Result<u32>
pub unsafe fn maxStack(&self) -> Result<u32>
pub unsafe fn lengthProlog(&self) -> Result<u32>
pub unsafe fn lengthSavedRegisters(&self) -> Result<u32>
pub unsafe fn program(&self) -> Result<BSTR>
pub unsafe fn systemExceptionHandling(&self) -> Result<BOOL>
pub unsafe fn cplusplusExceptionHandling(&self) -> Result<BOOL>
pub unsafe fn functionStart(&self) -> Result<BOOL>
pub unsafe fn allocatesBasePointer(&self) -> Result<BOOL>
pub unsafe fn type(&self) -> Result<u32>
pub unsafe fn functionParent(&self) -> Result<IDiaFrameData>
pub unsafe fn execute<P0>(&self, frame: P0) -> Result<()>where P0: IntoParam<IDiaStackWalkFrame>,
Trait Implementations§
§impl Clone for IDiaFrameData
impl Clone for IDiaFrameData
§impl ComInterface for IDiaFrameData
impl ComInterface for IDiaFrameData
§impl Debug for IDiaFrameData
impl Debug for IDiaFrameData
§impl Interface for IDiaFrameData
impl Interface for IDiaFrameData
type Vtable = IDiaFrameData_Vtbl
source§fn 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.source§fn 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 PartialEq<IDiaFrameData> for IDiaFrameData
impl PartialEq<IDiaFrameData> for IDiaFrameData
impl Eq for IDiaFrameData
Auto Trait Implementations§
impl RefUnwindSafe for IDiaFrameData
impl !Send for IDiaFrameData
impl !Sync for IDiaFrameData
impl Unpin for IDiaFrameData
impl UnwindSafe for IDiaFrameData
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