pub trait AsyncInitableImpl: ObjectImpl {
    // Provided method
    fn init_future(
        &self,
        io_priority: Priority
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static, Global>> { ... }
}

Provided Methods§

source

fn init_future( &self, io_priority: Priority ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static, Global>>

Implementors§