[][src]Trait winrt::RtAsyncAction

pub trait RtAsyncAction {
    fn blocking_wait(&self);
}

Extension for IAsyncAction with helper method.

Required methods

fn blocking_wait(&self)

Waits for the asynchronous action to complete, blocking the current thread.

Loading content...

Implementors

impl RtAsyncAction for IAsyncAction[src]

impl<P: RtType + 'static> RtAsyncAction for IAsyncActionWithProgress<P> where
    AsyncActionWithProgressCompletedHandler<P>: ComIid
[src]

impl<T: RtType + 'static> RtAsyncAction for IAsyncOperation<T> where
    AsyncOperationCompletedHandler<T>: ComIid
[src]

impl<T: RtType + 'static, P: RtType + 'static> RtAsyncAction for IAsyncOperationWithProgress<T, P> where
    AsyncOperationWithProgressCompletedHandler<T, P>: ComIid
[src]

Loading content...