#[repr(C)]
pub struct IDebugBreakpoint_Vtbl {
Show 22 fields pub base__: IUnknown_Vtbl, pub GetId: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub GetType: unsafe extern "system" fn(_: *mut c_void, _: *mut u32, _: *mut u32) -> HRESULT, pub GetAdder: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub GetFlags: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub AddFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub RemoveFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub SetFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub GetOffset: unsafe extern "system" fn(_: *mut c_void, _: *mut u64) -> HRESULT, pub SetOffset: unsafe extern "system" fn(_: *mut c_void, _: u64) -> HRESULT, pub GetDataParameters: unsafe extern "system" fn(_: *mut c_void, _: *mut u32, _: *mut u32) -> HRESULT, pub SetDataParameters: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT, pub GetPassCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetPassCount: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub GetCurrentPassCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub GetMatchThreadId: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetMatchThreadId: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub GetCommand: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: u32, _: *mut u32) -> HRESULT, pub SetCommand: unsafe extern "system" fn(_: *mut c_void, _: PCSTR) -> HRESULT, pub GetOffsetExpression: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: u32, _: *mut u32) -> HRESULT, pub SetOffsetExpression: unsafe extern "system" fn(_: *mut c_void, _: PCSTR) -> HRESULT, pub GetParameters: unsafe extern "system" fn(_: *mut c_void, _: *mut DEBUG_BREAKPOINT_PARAMETERS) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§GetId: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§GetType: unsafe extern "system" fn(_: *mut c_void, _: *mut u32, _: *mut u32) -> HRESULT§GetAdder: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§GetFlags: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§AddFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§RemoveFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§SetFlags: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§GetOffset: unsafe extern "system" fn(_: *mut c_void, _: *mut u64) -> HRESULT§SetOffset: unsafe extern "system" fn(_: *mut c_void, _: u64) -> HRESULT§GetDataParameters: unsafe extern "system" fn(_: *mut c_void, _: *mut u32, _: *mut u32) -> HRESULT§SetDataParameters: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT§GetPassCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetPassCount: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§GetCurrentPassCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§GetMatchThreadId: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetMatchThreadId: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§GetCommand: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: u32, _: *mut u32) -> HRESULT§SetCommand: unsafe extern "system" fn(_: *mut c_void, _: PCSTR) -> HRESULT§GetOffsetExpression: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: u32, _: *mut u32) -> HRESULT§SetOffsetExpression: unsafe extern "system" fn(_: *mut c_void, _: PCSTR) -> HRESULT§GetParameters: unsafe extern "system" fn(_: *mut c_void, _: *mut DEBUG_BREAKPOINT_PARAMETERS) -> HRESULT

Implementations§

§

impl IDebugBreakpoint_Vtbl

pub const fn new<Identity, const OFFSET: isize>() -> IDebugBreakpoint_Vtbl
where Identity: IDebugBreakpoint_Impl + IUnknownImpl,

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.