pub trait Service: DynClone {
    // Required methods
    fn dump<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Dump, Box<dyn Error>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn list<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Vec<PathBuf>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn dump<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Dump, Box<dyn Error>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn list<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Vec<PathBuf>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§