#[repr(C)]pub struct ISynchronizeEventVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent) -> ULONG>,
pub GetHandle: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, ph: *mut HANDLE) -> HRESULT>,
pub SetEventHandle: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, ph: *mut HANDLE) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent) -> ULONG>
§GetHandle: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, ph: *mut HANDLE) -> HRESULT>
§SetEventHandle: Option<unsafe extern "C" fn(This: *mut ISynchronizeEvent, ph: *mut HANDLE) -> HRESULT>
Trait Implementations§
Source§impl Clone for ISynchronizeEventVtbl
impl Clone for ISynchronizeEventVtbl
Source§fn clone(&self) -> ISynchronizeEventVtbl
fn clone(&self) -> ISynchronizeEventVtbl
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 moreSource§impl Debug for ISynchronizeEventVtbl
impl Debug for ISynchronizeEventVtbl
Source§impl Ord for ISynchronizeEventVtbl
impl Ord for ISynchronizeEventVtbl
Source§fn cmp(&self, other: &ISynchronizeEventVtbl) -> Ordering
fn cmp(&self, other: &ISynchronizeEventVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ISynchronizeEventVtbl
impl PartialEq for ISynchronizeEventVtbl
Source§impl PartialOrd for ISynchronizeEventVtbl
impl PartialOrd for ISynchronizeEventVtbl
impl Copy for ISynchronizeEventVtbl
impl Eq for ISynchronizeEventVtbl
impl StructuralPartialEq for ISynchronizeEventVtbl
Auto Trait Implementations§
impl Freeze for ISynchronizeEventVtbl
impl RefUnwindSafe for ISynchronizeEventVtbl
impl Send for ISynchronizeEventVtbl
impl Sync for ISynchronizeEventVtbl
impl Unpin for ISynchronizeEventVtbl
impl UnwindSafe for ISynchronizeEventVtbl
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