Trait ProcessTask

Source
pub trait ProcessTask:
    Future<Output = ()>
    + Send
    + Sync { }
Expand description

The ProcessTask trait represents the future that is returned from some functions that is awaited on to process events associated with a published service or a browse operation.

Implementors§

Source§

impl<T> ProcessTask for T
where T: Future<Output = ()> + Send + Sync,