pub trait WritableTrait: 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<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl WritableTrait for CloudWriterIoTraitWrap
Available on crate feature
cloud only.