Struct IDebugApplication32
pub struct IDebugApplication32(/* private fields */);
Implementations§
§impl IDebugApplication32
impl IDebugApplication32
pub unsafe fn SetName<P0>(&self, pstrname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StepOutComplete(&self) -> Result<()>
pub unsafe fn DebugOutput<P0>(&self, pstr: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StartDebugSession(&self) -> Result<()>
pub unsafe fn HandleBreakPoint( &self, br: BREAKREASON, ) -> Result<BREAKRESUMEACTION>
pub unsafe fn Close(&self) -> Result<()>
pub unsafe fn GetBreakFlags( &self, pabf: *mut u32, pprdatsteppingthread: *mut Option<IRemoteDebugApplicationThread>, ) -> Result<()>
pub unsafe fn GetCurrentThread(&self) -> Result<IDebugApplicationThread>
pub unsafe fn CreateAsyncDebugOperation<P0>(
&self,
psdo: P0,
) -> Result<IDebugAsyncOperation>where
P0: Param<IDebugSyncOperation>,
pub unsafe fn AddStackFrameSniffer<P0>(&self, pdsfs: P0) -> Result<u32>where
P0: Param<IDebugStackFrameSniffer>,
pub unsafe fn RemoveStackFrameSniffer(&self, dwcookie: u32) -> Result<()>
pub unsafe fn QueryCurrentThreadIsDebuggerThread(&self) -> Result<()>
pub unsafe fn SynchronousCallInDebuggerThread<P0>(
&self,
pptc: P0,
dwparam1: u32,
dwparam2: u32,
dwparam3: u32,
) -> Result<()>where
P0: Param<IDebugThreadCall32>,
pub unsafe fn CreateApplicationNode(&self) -> Result<IDebugApplicationNode>
pub unsafe fn FireDebuggerEvent<P1>(
&self,
riid: *const GUID,
punk: P1,
) -> Result<()>where
P1: Param<IUnknown>,
pub unsafe fn HandleRuntimeError<P0, P1>(
&self,
perrordebug: P0,
pscriptsite: P1,
pbra: *mut BREAKRESUMEACTION,
perra: *mut ERRORRESUMEACTION,
pfcallonscripterror: *mut BOOL,
) -> Result<()>where
P0: Param<IActiveScriptErrorDebug>,
P1: Param<IActiveScriptSite>,
pub unsafe fn FCanJitDebug(&self) -> BOOL
pub unsafe fn FIsAutoJitDebugEnabled(&self) -> BOOL
pub unsafe fn AddGlobalExpressionContextProvider<P0>(
&self,
pdsfs: P0,
) -> Result<u32>where
P0: Param<IProvideExpressionContexts>,
pub unsafe fn RemoveGlobalExpressionContextProvider( &self, dwcookie: u32, ) -> Result<()>
Methods from Deref<Target = IRemoteDebugApplication>§
pub unsafe fn ResumeFromBreakPoint<P0>(
&self,
prptfocus: P0,
bra: BREAKRESUMEACTION,
era: ERRORRESUMEACTION,
) -> Result<()>where
P0: Param<IRemoteDebugApplicationThread>,
pub unsafe fn CauseBreak(&self) -> Result<()>
pub unsafe fn ConnectDebugger<P0>(&self, pad: P0) -> Result<()>where
P0: Param<IApplicationDebugger>,
pub unsafe fn DisconnectDebugger(&self) -> Result<()>
pub unsafe fn GetDebugger(&self) -> Result<IApplicationDebugger>
pub unsafe fn CreateInstanceAtApplication<P1>(
&self,
rclsid: *const GUID,
punkouter: P1,
dwclscontext: u32,
riid: *const GUID,
) -> Result<IUnknown>where
P1: Param<IUnknown>,
pub unsafe fn QueryAlive(&self) -> Result<()>
pub unsafe fn EnumThreads(&self) -> Result<IEnumRemoteDebugApplicationThreads>
pub unsafe fn GetName(&self) -> Result<BSTR>
pub unsafe fn GetRootNode(&self) -> Result<IDebugApplicationNode>
pub unsafe fn EnumGlobalExpressionContexts( &self, ) -> Result<IEnumDebugExpressionContexts>
Trait Implementations§
§impl CanInto<IRemoteDebugApplication> for IDebugApplication32
impl CanInto<IRemoteDebugApplication> for IDebugApplication32
§impl CanInto<IUnknown> for IDebugApplication32
impl CanInto<IUnknown> for IDebugApplication32
§impl Clone for IDebugApplication32
impl Clone for IDebugApplication32
§fn clone(&self) -> IDebugApplication32
fn clone(&self) -> IDebugApplication32
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IDebugApplication32
impl Debug for IDebugApplication32
§impl Deref for IDebugApplication32
impl Deref for IDebugApplication32
§impl From<&IDebugApplication32> for &IRemoteDebugApplication
impl From<&IDebugApplication32> for &IRemoteDebugApplication
§fn from(value: &IDebugApplication32) -> Self
fn from(value: &IDebugApplication32) -> Self
Converts to this type from the input type.
§impl From<&IDebugApplication32> for &IUnknown
impl From<&IDebugApplication32> for &IUnknown
§fn from(value: &IDebugApplication32) -> Self
fn from(value: &IDebugApplication32) -> Self
Converts to this type from the input type.
§impl From<IDebugApplication32> for IRemoteDebugApplication
impl From<IDebugApplication32> for IRemoteDebugApplication
§fn from(value: IDebugApplication32) -> Self
fn from(value: IDebugApplication32) -> Self
Converts to this type from the input type.
§impl From<IDebugApplication32> for IUnknown
impl From<IDebugApplication32> for IUnknown
§fn from(value: IDebugApplication32) -> Self
fn from(value: IDebugApplication32) -> Self
Converts to this type from the input type.
§impl Interface for IDebugApplication32
impl Interface for IDebugApplication32
§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.§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.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IDebugApplication32
impl PartialEq for IDebugApplication32
impl Eq for IDebugApplication32
impl StructuralPartialEq for IDebugApplication32
Auto Trait Implementations§
impl Freeze for IDebugApplication32
impl RefUnwindSafe for IDebugApplication32
impl !Send for IDebugApplication32
impl !Sync for IDebugApplication32
impl Unpin for IDebugApplication32
impl UnwindSafe for IDebugApplication32
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