pub trait Writer<S: Metadata> {
    // Required methods
    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;
    fn overwrite<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 self,
        new_storage_url: &'life1 str,
        new_storage_dir: &'life2 str,
        new_backup_url: &'life3 str,
        new_backup_dir: &'life4 str,
    ) -> Pin<Box<dyn Future<Output = BackupResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: '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,

Source

fn overwrite<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>( &'life0 self, new_storage_url: &'life1 str, new_storage_dir: &'life2 str, new_backup_url: &'life3 str, new_backup_dir: &'life4 str, ) -> Pin<Box<dyn Future<Output = BackupResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait,

Implementors§