Struct microsoft_dia::bindings::IDiaStackFrame
#[repr(transparent)]pub struct IDiaStackFrame(_);Implementations§
§impl IDiaStackFrame
impl IDiaStackFrame
pub unsafe fn type(&self) -> Result<u32>
pub unsafe fn base(&self) -> Result<u64>
pub unsafe fn size(&self) -> Result<u32>
pub unsafe fn returnAddress(&self) -> Result<u64>
pub unsafe fn localsBase(&self) -> Result<u64>
pub unsafe fn lengthLocals(&self) -> Result<u32>
pub unsafe fn lengthParams(&self) -> Result<u32>
pub unsafe fn lengthProlog(&self) -> Result<u32>
pub unsafe fn lengthSavedRegisters(&self) -> Result<u32>
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 maxStack(&self) -> Result<u32>
pub unsafe fn get_registerValue(&self, index: u32) -> Result<u64>
Trait Implementations§
§impl Clone for IDiaStackFrame
impl Clone for IDiaStackFrame
§impl ComInterface for IDiaStackFrame
impl ComInterface for IDiaStackFrame
§impl Debug for IDiaStackFrame
impl Debug for IDiaStackFrame
§impl Interface for IDiaStackFrame
impl Interface for IDiaStackFrame
type Vtable = IDiaStackFrame_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<IDiaStackFrame> for IDiaStackFrame
impl PartialEq<IDiaStackFrame> for IDiaStackFrame
impl Eq for IDiaStackFrame
Auto Trait Implementations§
impl RefUnwindSafe for IDiaStackFrame
impl !Send for IDiaStackFrame
impl !Sync for IDiaStackFrame
impl Unpin for IDiaStackFrame
impl UnwindSafe for IDiaStackFrame
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