Trait ObsBootstrapStatusHandler

Source
pub trait ObsBootstrapStatusHandler:
    Debug
    + Send
    + Sync {
    // Required methods
    fn handle_downloading<'life0, 'async_trait>(
        &'life0 mut self,
        progress: f32,
        message: String,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn handle_extraction<'life0, 'async_trait>(
        &'life0 mut self,
        progress: f32,
        message: String,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn handle_downloading<'life0, 'async_trait>( &'life0 mut self, progress: f32, message: String, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn handle_extraction<'life0, 'async_trait>( &'life0 mut self, progress: f32, message: String, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§