Trait IAsyncActionWithProgress_Impl

Source
pub trait IAsyncActionWithProgress_Impl<TProgress>: IAsyncInfo_Impl
where TProgress: RuntimeType + 'static,
{ // Required methods fn SetProgress( &self, handler: Ref<'_, AsyncActionProgressHandler<TProgress>>, ) -> Result<()>; fn Progress(&self) -> Result<AsyncActionProgressHandler<TProgress>>; fn SetCompleted( &self, handler: Ref<'_, AsyncActionWithProgressCompletedHandler<TProgress>>, ) -> Result<()>; fn Completed( &self, ) -> Result<AsyncActionWithProgressCompletedHandler<TProgress>>; fn GetResults(&self) -> Result<()>; }

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§