StorageWriter

Trait StorageWriter 

Source
pub trait StorageWriter:
    Write
    + Seek
    + Send
    + 'static { }
Expand description

Handle for writing to the underlying storage layer.

Implementors§

Source§

impl<T> StorageWriter for T
where T: Write + Seek + Send + 'static,