pub struct WriteEnd<Buffer, Q, Auxiliary = ()> { /* private fields */ }
Expand description

It is recommended to create at most one WriteEnd per thread using WriteEnd::clone.

Implementations§

source§

impl<Buffer, Q, Auxiliary> WriteEnd<Buffer, Q, Auxiliary>

source

pub fn new(shared_data: SharedData<Buffer, Q, Auxiliary>) -> Self

Create a WriteEnd from SharedData.

source

pub fn into_shared_data(self) -> SharedData<Buffer, Q, Auxiliary>

Consume the WriteEnd and return the stored SharedData.

source§

impl<Buffer, Q, Auxiliary> WriteEnd<Buffer, Q, Auxiliary>where Buffer: Send + Sync, Q: Queue,

source

pub fn send_open_file_request( &mut self, id: Id<Buffer>, params: OpenFileRequest<'_> ) -> Result<AwaitableHandle<Buffer>, Error>

source

pub fn send_close_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle> ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_read_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, len: u32, buffer: Option<Buffer> ) -> Result<AwaitableData<Buffer>, Error>

Return crate::Data::Buffer or crate::Data::AllocatedBox if not EOF, otherwise returns crate::Data::Eof.

source

pub fn send_remove_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_rename_request( &mut self, id: Id<Buffer>, oldpath: Cow<'_, Path>, newpath: Cow<'_, Path> ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_mkdir_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path>, attrs: FileAttrs ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_rmdir_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_opendir_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableHandle<Buffer>, Error>

source

pub fn send_readdir_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle> ) -> Result<AwaitableNameEntries<Buffer>, Error>

Return all entries in the directory specified by the handle, including . and ...

The filename only contains the basename.

source

pub fn send_stat_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableAttrs<Buffer>, Error>

source

pub fn send_lstat_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableAttrs<Buffer>, Error>

Does not follow symlink

source

pub fn send_fstat_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle> ) -> Result<AwaitableAttrs<Buffer>, Error>

  • handle - Must be opened with FileMode::READ.
source

pub fn send_setstat_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path>, attrs: FileAttrs ) -> Result<AwaitableStatus<Buffer>, Error>

source

pub fn send_fsetstat_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, attrs: FileAttrs ) -> Result<AwaitableStatus<Buffer>, Error>

  • handle - Must be opened with OpenOptions::write set.
source

pub fn send_realpath_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableName<Buffer>, Error>

Create symlink

source

pub fn send_limits_request( &mut self, id: Id<Buffer> ) -> Result<AwaitableLimits<Buffer>, Error>

Return limits of the server

Precondition

Requires extensions::contains(Extensions::LIMITS) to be true.

source

pub fn send_expand_path_request( &mut self, id: Id<Buffer>, path: Cow<'_, Path> ) -> Result<AwaitableName<Buffer>, Error>

This supports canonicalisation of relative paths and those that need tilde-expansion, i.e. “~”, “~/…” and “~user/…”.

These paths are expanded using shell-like rules and the resultant path is canonicalised similarly to WriteEnd::send_realpath_request.

Precondition

Requires extensions::contains(Extensions::EXPAND_PATH) to be true.

source

pub fn send_fsync_request( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle> ) -> Result<AwaitableStatus<Buffer>, Error>

Precondition

Requires extensions::contains(Extensions::FSYNC) to be true.

Precondition

Requires extensions::contains(Extensions::HARDLINK) to be true.

source

pub fn send_posix_rename_request( &mut self, id: Id<Buffer>, oldpath: Cow<'_, Path>, newpath: Cow<'_, Path> ) -> Result<AwaitableStatus<Buffer>, Error>

Precondition

Requires extensions::contains(Extensions::POSIX_RENAME) to be true.

source

pub fn send_copy_data_request( &mut self, id: Id<Buffer>, read_from_handle: Cow<'_, Handle>, read_from_offset: u64, read_data_length: u64, write_to_handle: Cow<'_, Handle>, write_to_offset: u64 ) -> Result<AwaitableStatus<Buffer>, Error>

The server MUST copy the data exactly as if the client had issued a series of RequestInner::Read requests on the read_from_handle starting at read_from_offset and totaling read_data_length bytes, and issued a series of RequestInner::Write packets on the write_to_handle, starting at the write_from_offset, and totaling the total number of bytes read by the RequestInner::Read packets.

The server SHOULD allow read_from_handle and write_to_handle to be the same handle as long as the range of data is not overlapping. This allows data to efficiently be moved within a file.

If data_length is 0, this imples data should be read until EOF is encountered.

There are no protocol restictions on this operation; however, the server MUST ensure that the user does not exceed quota, etc. The server is, as always, free to complete this operation out of order if it is too large to complete immediately, or to refuse a request that is too large.

Precondition

Requires extensions::contains(Extensions::COPY_DATA) to be true.

For openssh-portable, this is available from V_9_0_P1.

source§

impl<Buffer, Q, Auxiliary> WriteEnd<Buffer, Q, Auxiliary>where Buffer: ToBuffer + Send + Sync + 'static, Q: Queue,

source

pub fn send_write_request_buffered( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, data: Cow<'_, [u8]> ) -> Result<AwaitableStatus<Buffer>, Error>

Write will extend the file if writing beyond the end of the file.

It is legal to write way beyond the end of the file, the semantics are to write zeroes from the end of the file to the specified offset and then the data.

On most operating systems, such writes do not allocate disk space but instead leave “holes” in the file.

This function is only suitable for writing small data since it needs to copy the entire data into buffer.

source

pub fn send_write_request_buffered_vectored( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, io_slices: &[IoSlice<'_>] ) -> Result<AwaitableStatus<Buffer>, Error>

Write will extend the file if writing beyond the end of the file.

It is legal to write way beyond the end of the file, the semantics are to write zeroes from the end of the file to the specified offset and then the data.

On most operating systems, such writes do not allocate disk space but instead leave “holes” in the file.

This function is only suitable for writing small data since it needs to copy the entire data into buffer.

source

pub fn send_write_request_buffered_vectored2( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, bufs: &[&[IoSlice<'_>]] ) -> Result<AwaitableStatus<Buffer>, Error>

Write will extend the file if writing beyond the end of the file.

It is legal to write way beyond the end of the file, the semantics are to write zeroes from the end of the file to the specified offset and then the data.

On most operating systems, such writes do not allocate disk space but instead leave “holes” in the file.

This function is only suitable for writing small data since it needs to copy the entire data into buffer.

source

pub fn send_write_request_zero_copy( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, data: &[Bytes] ) -> Result<AwaitableStatus<Buffer>, Error>

Write will extend the file if writing beyond the end of the file.

It is legal to write way beyond the end of the file, the semantics are to write zeroes from the end of the file to the specified offset and then the data.

On most operating systems, such writes do not allocate disk space but instead leave “holes” in the file.

This function is zero-copy.

source

pub fn send_write_request_zero_copy2( &mut self, id: Id<Buffer>, handle: Cow<'_, Handle>, offset: u64, data_slice: &[&[Bytes]] ) -> Result<AwaitableStatus<Buffer>, Error>

Write will extend the file if writing beyond the end of the file.

It is legal to write way beyond the end of the file, the semantics are to write zeroes from the end of the file to the specified offset and then the data.

On most operating systems, such writes do not allocate disk space but instead leave “holes” in the file.

This function is zero-copy.

Methods from Deref<Target = SharedData<Buffer, Q, Auxiliary>>§

source

pub fn queue(&self) -> &Q

source

pub fn get_auxiliary(&self) -> &Auxiliary

Returned the auxiliary data.

source

pub fn create_response_id(&self) -> Id<Buffer>

Create a useable response id.

source

pub fn try_reserve_id(&self, new_id_cnt: u32) -> bool

Return true if reserve succeeds, false otherwise.

source

pub fn reserve_id(&self, new_id_cnt: u32)

Return true if reserve succeeds, false otherwise.

Trait Implementations§

source§

impl<Buffer, Q, Auxiliary> Clone for WriteEnd<Buffer, Q, Auxiliary>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Buffer: Debug, Q: Debug, Auxiliary: Debug> Debug for WriteEnd<Buffer, Q, Auxiliary>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Buffer, Q, Auxiliary> Deref for WriteEnd<Buffer, Q, Auxiliary>

§

type Target = SharedData<Buffer, Q, Auxiliary>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<Buffer, Q, Auxiliary> DerefMut for WriteEnd<Buffer, Q, Auxiliary>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<Buffer, Q, Auxiliary = ()> !RefUnwindSafe for WriteEnd<Buffer, Q, Auxiliary>

§

impl<Buffer, Q, Auxiliary> Send for WriteEnd<Buffer, Q, Auxiliary>where Auxiliary: Send + Sync, Buffer: Send, Q: Send + Sync,

§

impl<Buffer, Q, Auxiliary> Sync for WriteEnd<Buffer, Q, Auxiliary>where Auxiliary: Send + Sync, Buffer: Send, Q: Send + Sync,

§

impl<Buffer, Q, Auxiliary> Unpin for WriteEnd<Buffer, Q, Auxiliary>

§

impl<Buffer, Q, Auxiliary = ()> !UnwindSafe for WriteEnd<Buffer, Q, Auxiliary>

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.