pub trait WriteableTrait: Write {
// Required methods
fn close(&mut self) -> Result<()>;
fn sync_all(&self) -> Result<()>;
fn sync_data(&self) -> Result<()>;
}Required Methods§
fn close(&mut self) -> Result<()>
fn sync_all(&self) -> Result<()>
fn sync_data(&self) -> Result<()>
Implementors§
impl WriteableTrait for BlockingCloudWriter
Available on crate feature
cloud only.