pub trait Write:
Unpin
+ Send
+ Sync {
// Required methods
fn write(
&mut self,
bs: Buffer,
) -> impl Future<Output = Result<()>> + MaybeSend;
fn close(&mut self) -> impl Future<Output = Result<Metadata>> + MaybeSend;
fn abort(&mut self) -> impl Future<Output = Result<()>> + MaybeSend;
}
Expand description
Write is the trait that OpenDAL returns to callers.
Required Methods§
Sourcefn write(&mut self, bs: Buffer) -> impl Future<Output = Result<()>> + MaybeSend
fn write(&mut self, bs: Buffer) -> impl Future<Output = Result<()>> + MaybeSend
Write given bytes into writer.
§Behavior
Ok(())
means all bytes has been written successfully.Err(err)
means error happens and no bytes has been written.
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.