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§

source§

impl<T> SharedFileWriter<T>

source

pub fn file_path(&self) -> &PathBufwhere T: FilePath,

Gets the file path.

source

pub async fn sync_all(&self) -> Result<(), T::SyncError>where T: SharedFileType,

Synchronizes data and metadata with the disk buffer.

source

pub async fn sync_data(&self) -> Result<(), T::SyncError>where T: SharedFileType,

Synchronizes data with the disk buffer.

source

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.

source

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§

impl<T> AsyncWrite for SharedFileWriter<T>where T: AsyncWrite,

source§

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 more
source§

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

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

Like poll_write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

Determines if this writer has an efficient poll_write_vectored implementation. Read more
source§

impl<T> Drop for SharedFileWriter<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'pin, T> Unpin for SharedFileWriter<T>where __SharedFileWriter<'pin, T>: Unpin,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for SharedFileWriter<T>where T: RefUnwindSafe,

§

impl<T> Send for SharedFileWriter<T>where T: Send + Sync,

§

impl<T> Sync for SharedFileWriter<T>where T: Send + Sync,

§

impl<T> UnwindSafe for SharedFileWriter<T>where T: UnwindSafe + RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.