Struct windows::Foundation::IAsyncOperation
#[repr(transparent)]pub struct IAsyncOperation<TResult>(_, _)
where
TResult: RuntimeType + 'static;
Expand description
Required features: "Foundation"
Implementations§
§impl<TResult: RuntimeType + 'static> IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> IAsyncOperation<TResult>
pub fn SetCompleted<P0>(&self, handler: P0) -> Result<()>where P0: IntoParam<AsyncOperationCompletedHandler<TResult>>,
pub fn Completed(&self) -> Result<AsyncOperationCompletedHandler<TResult>>
pub fn GetResults(&self) -> Result<TResult>
pub fn Id(&self) -> Result<u32>
pub fn Status(&self) -> Result<AsyncStatus>
pub fn ErrorCode(&self) -> Result<HRESULT>
pub fn Cancel(&self) -> Result<()>
pub fn Close(&self) -> Result<()>
§impl<TResult: RuntimeType + 'static> IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> IAsyncOperation<TResult>
Trait Implementations§
§impl<TResult: RuntimeType + 'static> Clone for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Clone for IAsyncOperation<TResult>
§impl<TResult: RuntimeType + 'static> ComInterface for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> ComInterface for IAsyncOperation<TResult>
fn as_unknown(&self) -> &IUnknown
§impl<TResult: RuntimeType + 'static> Debug for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Debug for IAsyncOperation<TResult>
§impl<TResult: RuntimeType + 'static> Future for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Future for IAsyncOperation<TResult>
§impl<TResult: RuntimeType + 'static> Interface for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Interface for IAsyncOperation<TResult>
type Vtable = IAsyncOperation_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: RuntimeType + 'static> PartialEq<IAsyncOperation<TResult>> for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> PartialEq<IAsyncOperation<TResult>> for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Eq for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Send for IAsyncOperation<TResult>
impl<TResult: RuntimeType + 'static> Sync for IAsyncOperation<TResult>
Auto Trait Implementations§
impl<TResult> RefUnwindSafe for IAsyncOperation<TResult>where TResult: RefUnwindSafe,
impl<TResult> Unpin for IAsyncOperation<TResult>where TResult: Unpin,
impl<TResult> UnwindSafe for IAsyncOperation<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
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more