puffin::puffin_manager::stager

Trait DirWriterProvider

Source
pub trait DirWriterProvider {
    // Required method
    fn writer<'life0, 'life1, 'async_trait>(
        &'life0 self,
        relative_path: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<BoxWriter>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

DirWriterProvider provides a way to write files into a directory.

Required Methods§

Source

fn writer<'life0, 'life1, 'async_trait>( &'life0 self, relative_path: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<BoxWriter>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Creates a writer for the given relative path.

Implementors§