pub trait TStabilize {
    // Required method
    fn wait<'async_trait>(
        self: Arc<Self>
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

A trait with wait method.

Required Methods§

source

fn wait<'async_trait>( self: Arc<Self> ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where Self: 'async_trait,

Wait and poll

Implementors§