Trait maelstrom_util::manifest::DataUpload

source ·
pub trait DataUpload: Send {
    // Required method
    fn upload<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        path: &'life1 Path
    ) -> Pin<Box<dyn Future<Output = Result<Sha256Digest>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn upload<'life0, 'life1, 'async_trait>( &'life0 mut self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<Sha256Digest>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§