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( &self, handler: &AsyncOperationCompletedHandler<TResult> ) -> Result<()>
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>
§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> 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<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