Trait Write

Source
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§

Source

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.
Source

fn close(&mut self) -> impl Future<Output = Result<Metadata>> + MaybeSend

Close the writer and make sure all data has been flushed.

Source

fn abort(&mut self) -> impl Future<Output = Result<()>> + MaybeSend

Abort the pending writer.

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.

Implementations on Foreign Types§

Source§

impl Write for ()

Source§

async fn write(&mut self, _: Buffer) -> Result<()>

Source§

async fn close(&mut self) -> Result<Metadata>

Source§

async fn abort(&mut self) -> Result<()>

Source§

impl<T: WriteDyn + ?Sized> Write for Box<T>

Source§

async fn write(&mut self, bs: Buffer) -> Result<()>

Source§

async fn close(&mut self) -> Result<Metadata>

Source§

async fn abort(&mut self) -> Result<()>

Implementors§

Source§

impl<ONE: Write, TWO: Write> Write for TwoWays<ONE, TWO>

Source§

impl<ONE: Write, TWO: Write, THREE: Write> Write for ThreeWays<ONE, TWO, THREE>

Source§

impl<W> Write for AppendWriter<W>
where W: AppendWrite,

Source§

impl<W> Write for BlockWriter<W>
where W: BlockWrite,

Source§

impl<W> Write for MultipartWriter<W>
where W: MultipartWrite,

Source§

impl<W: OneShotWrite> Write for OneShotWriter<W>

Source§

impl<W: PositionWrite> Write for PositionWriter<W>