Trait windows::Foundation::IAsyncOperation_Impl
pub trait IAsyncOperation_Impl<TResult>: Sized + IAsyncInfo_Implwhere
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.