pub struct SharedFileWriter<T> { /* private fields */ }
Expand description
A writer for the shared temporary file.
§Dropping the writer
Note that while dropping the writer while implicitly change it to “completed”,
you must manually call SharedFileWriter::sync_all
or SharedFileWriter::sync_data
to ensure all content is flushed to the underlying buffer.
Implementations§
Sourcepub async fn sync_all(&self) -> Result<(), T::SyncError>where
T: SharedFileType,
pub async fn sync_all(&self) -> Result<(), T::SyncError>where
T: SharedFileType,
Synchronizes data and metadata with the disk buffer.
Sourcepub async fn sync_data(&self) -> Result<(), T::SyncError>where
T: SharedFileType,
pub async fn sync_data(&self) -> Result<(), T::SyncError>where
T: SharedFileType,
Synchronizes data with the disk buffer.
Sourcepub async fn complete(self) -> Result<(), CompleteWritingError>where
T: SharedFileType,
pub async fn complete(self) -> Result<(), CompleteWritingError>where
T: SharedFileType,
Completes the writing operation.
Use complete_no_sync
if you do not wish
to sync the file to disk.
Sourcepub fn complete_no_sync(self) -> Result<(), CompleteWritingError>
pub fn complete_no_sync(self) -> Result<(), CompleteWritingError>
Completes the writing operation.
If you need to sync the file to disk, consider calling
complete
instead.
Trait Implementations§
Source§fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>
Attempt to write bytes from
buf
into the object. Read moreSource§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Attempts to flush the object, ensuring that any buffered data reach
their destination. Read more
Source§fn poll_shutdown(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
fn poll_shutdown( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Initiates or attempts to shut down this writer, returning success when
the I/O connection has completely shut down. Read more
Source§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>],
) -> Poll<Result<usize, Error>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>
Like
poll_write
, except that it writes from a slice of buffers. Read moreSource§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Determines if this writer has an efficient
poll_write_vectored
implementation. Read moreAuto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more