#[repr(C)]pub struct IWaitMultipleVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IWaitMultiple) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IWaitMultiple) -> ULONG>,
pub WaitMultiple: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, timeout: DWORD, pSync: *mut *mut ISynchronize) -> HRESULT>,
pub AddSynchronize: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, pSync: *mut ISynchronize) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IWaitMultiple) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IWaitMultiple) -> ULONG>
§WaitMultiple: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, timeout: DWORD, pSync: *mut *mut ISynchronize) -> HRESULT>
§AddSynchronize: Option<unsafe extern "C" fn(This: *mut IWaitMultiple, pSync: *mut ISynchronize) -> HRESULT>
Trait Implementations§
Source§impl Clone for IWaitMultipleVtbl
impl Clone for IWaitMultipleVtbl
Source§fn clone(&self) -> IWaitMultipleVtbl
fn clone(&self) -> IWaitMultipleVtbl
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 IWaitMultipleVtbl
impl Debug for IWaitMultipleVtbl
Source§impl Ord for IWaitMultipleVtbl
impl Ord for IWaitMultipleVtbl
Source§fn cmp(&self, other: &IWaitMultipleVtbl) -> Ordering
fn cmp(&self, other: &IWaitMultipleVtbl) -> 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 IWaitMultipleVtbl
impl PartialEq for IWaitMultipleVtbl
Source§impl PartialOrd for IWaitMultipleVtbl
impl PartialOrd for IWaitMultipleVtbl
impl Copy for IWaitMultipleVtbl
impl Eq for IWaitMultipleVtbl
impl StructuralPartialEq for IWaitMultipleVtbl
Auto Trait Implementations§
impl Freeze for IWaitMultipleVtbl
impl RefUnwindSafe for IWaitMultipleVtbl
impl Send for IWaitMultipleVtbl
impl Sync for IWaitMultipleVtbl
impl Unpin for IWaitMultipleVtbl
impl UnwindSafe for IWaitMultipleVtbl
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