pub trait Writer: Send {
    fn write_chunk(
        &mut self,
        hash: &Digest,
        data: &[u8]
    ) -> Result<ChunkPointer>; fn flush(&mut self) -> Result<()>; }

Required Methods

Implementors