pub trait Writer<S: Metadata> {
    // Required method
    fn write<'life0, 'async_trait>(
        &'life0 self,
        s: MetaSnapshot<S>,
    ) -> Pin<Box<dyn Future<Output = BackupResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Writer writes MetaSnapshot to meta store.

Required Methods§

source

fn write<'life0, 'async_trait>( &'life0 self, s: MetaSnapshot<S>, ) -> Pin<Box<dyn Future<Output = BackupResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§