#[repr(transparent)]pub struct AsyncOperationCompletedHandler<TResult>(pub IUnknown, _)
where
TResult: RuntimeType + 'static;Expand description
Required features: "Foundation"
Tuple Fields§
§0: IUnknownImplementations§
§impl<TResult> AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
pub fn new<F>(invoke: F) -> AsyncOperationCompletedHandler<TResult>where F: FnMut(Option<&IAsyncOperation<TResult>>, AsyncStatus) -> Result<(), Error> + Send + 'static,
pub fn Invoke<P0>( &self, asyncinfo: P0, asyncstatus: AsyncStatus ) -> Result<(), Error>where P0: TryIntoParam<IAsyncOperation<TResult>>,
Trait Implementations§
§impl<TResult> Clone for AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> Clone for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
§fn clone(&self) -> AsyncOperationCompletedHandler<TResult>
fn clone(&self) -> AsyncOperationCompletedHandler<TResult>
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<TResult> ComInterface for AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> ComInterface for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
fn as_unknown(&self) -> &IUnknown
§impl<TResult> Debug for AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> Debug for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
§impl<TResult> Interface for AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> Interface for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
type Vtable = AsyncOperationCompletedHandler_Vtbl<TResult>
§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.
§impl<TResult> PartialEq<AsyncOperationCompletedHandler<TResult>> for AsyncOperationCompletedHandler<TResult>where
TResult: RuntimeType + 'static,
impl<TResult> PartialEq<AsyncOperationCompletedHandler<TResult>> for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
§fn eq(&self, other: &AsyncOperationCompletedHandler<TResult>) -> bool
fn eq(&self, other: &AsyncOperationCompletedHandler<TResult>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<TResult> Eq for AsyncOperationCompletedHandler<TResult>where TResult: RuntimeType + 'static,
Auto Trait Implementations§
impl<TResult> RefUnwindSafe for AsyncOperationCompletedHandler<TResult>where TResult: RefUnwindSafe,
impl<TResult> !Send for AsyncOperationCompletedHandler<TResult>
impl<TResult> !Sync for AsyncOperationCompletedHandler<TResult>
impl<TResult> Unpin for AsyncOperationCompletedHandler<TResult>where TResult: Unpin,
impl<TResult> UnwindSafe for AsyncOperationCompletedHandler<TResult>where TResult: UnwindSafe,
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