pub trait IAsyncOperation_Impl<TResult>: Sized + IAsyncInfo_Impl
where TResult: RuntimeType + 'static,
{ // Required methods fn SetCompleted( &self, handler: Option<&AsyncOperationCompletedHandler<TResult>> ) -> Result<()>; fn Completed(&self) -> Result<AsyncOperationCompletedHandler<TResult>>; fn GetResults(&self) -> Result<TResult>; }

Required Methods§

fn SetCompleted( &self, handler: Option<&AsyncOperationCompletedHandler<TResult>> ) -> Result<()>

fn Completed(&self) -> Result<AsyncOperationCompletedHandler<TResult>>

fn GetResults(&self) -> Result<TResult>

Object Safety§

This trait is not object safe.

Implementors§