Struct IRemoteDebugApplicationEvents_Vtbl
#[repr(C)]pub struct IRemoteDebugApplicationEvents_Vtbl {
pub base__: IUnknown_Vtbl,
pub OnConnectDebugger: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub OnDisconnectDebugger: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
pub OnSetName: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT,
pub OnDebugOutput: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT,
pub OnClose: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
pub OnEnterBreakPoint: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub OnLeaveBreakPoint: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub OnCreateThread: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub OnDestroyThread: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub OnBreakFlagChange: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§OnConnectDebugger: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§OnDisconnectDebugger: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
§OnSetName: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT
§OnDebugOutput: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT
§OnClose: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
§OnEnterBreakPoint: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§OnLeaveBreakPoint: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§OnCreateThread: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§OnDestroyThread: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§OnBreakFlagChange: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT
Implementations§
§impl IRemoteDebugApplicationEvents_Vtbl
impl IRemoteDebugApplicationEvents_Vtbl
pub const fn new<Identity: IRemoteDebugApplicationEvents_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IRemoteDebugApplicationEvents_Vtbl
impl RefUnwindSafe for IRemoteDebugApplicationEvents_Vtbl
impl Send for IRemoteDebugApplicationEvents_Vtbl
impl Sync for IRemoteDebugApplicationEvents_Vtbl
impl Unpin for IRemoteDebugApplicationEvents_Vtbl
impl UnwindSafe for IRemoteDebugApplicationEvents_Vtbl
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