puffin::puffin_manager

Trait PuffinWriter

Source
pub trait PuffinWriter {
    // Required methods
    fn put_blob<'life0, 'life1, 'async_trait, R>(
        &'life0 mut self,
        key: &'life1 str,
        raw_data: R,
        options: PutOptions,
        properties: HashMap<String, String>,
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
       where R: AsyncRead + Send + 'async_trait,
             Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn put_dir<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        key: &'life1 str,
        dir: PathBuf,
        options: PutOptions,
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn set_footer_lz4_compressed(&mut self, lz4_compressed: bool);
    fn finish<'async_trait>(
        self,
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

The PuffinWriter trait provides methods for writing blobs and directories to a Puffin file.

Required Methods§

Source

fn put_blob<'life0, 'life1, 'async_trait, R>( &'life0 mut self, key: &'life1 str, raw_data: R, options: PutOptions, properties: HashMap<String, String>, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where R: AsyncRead + Send + 'async_trait, Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Writes a blob associated with the specified key to the Puffin file. Returns the number of bytes written.

Source

fn put_dir<'life0, 'life1, 'async_trait>( &'life0 mut self, key: &'life1 str, dir: PathBuf, options: PutOptions, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Writes a directory associated with the specified key to the Puffin file. Returns the number of bytes written.

The specified dir should be accessible from the filesystem.

Sets whether the footer should be LZ4 compressed.

Source

fn finish<'async_trait>( self, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where Self: 'async_trait,

Finalizes the Puffin file after writing.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<S, W> PuffinWriter for FsPuffinWriter<S, W>
where S: Stager, W: AsyncWrite + Unpin + Send,