Struct io_arrays::ArrayEditor
source · [−]pub struct ArrayEditor { /* private fields */ }Expand description
A random-access input source and output sink.
Implementations
Trait Implementations
Return the Metadata for the array. This is similar to
std::fs::File::metadata, though it returns fewer fields since the
underlying device may not be an actual filesystem inode. Read more
Borrows the handle. Read more
Extracts the raw handle, without taking any ownership.
Like AsRawHandle::as_raw_handle and AsRawSocket::as_raw_socket
but can return either type. Read more
Reads a number of bytes starting from a given offset. Read more
Reads the exact number of byte required to fill buf from the given
offset. Read more
Is to read_vectored what read_at is to read.
Is to read_exact_vectored what read_exact_at is to read_exact.
Determines if Self has an efficient read_vectored_at
implementation. Read more
Create a StreamReader which reads from the array at the given offset.
Writes a number of bytes starting from a given offset. Read more
Attempts to write an entire buffer starting from a given offset. Read more
Is to write_vectored what write_at is to write.
Is to write_all_vectored what write_all_at is to write_all.
Determines if Self has an efficient write_vectored_at
implementation. Read more
Copy len bytes from input at input_offset to self at offset.
Auto Trait Implementations
impl RefUnwindSafe for ArrayEditor
impl Send for ArrayEditor
impl Sync for ArrayEditor
impl Unpin for ArrayEditor
impl UnwindSafe for ArrayEditor
Blanket Implementations
Borrows the reference. Read more
pub fn as_filelike_view<Target>(&self) -> FilelikeView<'_, Target> where
Target: FromFilelike + IntoFilelike,
pub fn as_filelike_view<Target>(&self) -> FilelikeView<'_, Target> where
Target: FromFilelike + IntoFilelike,
Return a borrowing view of a resource which dereferences to a &Target
or &mut Target. Read more
Returns the raw value.
Extracts the raw grip.
Mutably borrows from an owned value. Read more
Announce the expected access pattern of the data at the given offset.
Allocate space in the file, increasing the file size as needed, and ensuring that there are no holes under the given range. Read more
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Read the exact number of bytes required to fill buf. Read more
Reads a number of bytes starting from a given offset. Read more
Reads the exact number of byte required to fill buf from the given offset. Read more
Like read, except that it reads into a slice of buffers. Read more
pub fn read_vectored_at(
&self,
bufs: &mut [IoSliceMut<'_>],
offset: u64
) -> Result<usize, Error>
pub fn read_vectored_at(
&self,
bufs: &mut [IoSliceMut<'_>],
offset: u64
) -> Result<usize, Error>
Is to read_vectored what read_at is to read.
pub fn read_exact_vectored_at(
&self,
bufs: &mut [IoSliceMut<'_>],
offset: u64
) -> Result<(), Error>
pub fn read_exact_vectored_at(
&self,
bufs: &mut [IoSliceMut<'_>],
offset: u64
) -> Result<(), Error>
Is to read_exact_vectored what read_exact_at is to read_exact.
Determines if this Reader has an efficient read_vectored_at
implementation. Read more
Read all bytes until EOF in this source, placing them into buf. Read more
Read all bytes, starting at offset, until EOF in this source, placing
them into buf. Read more
Read all bytes until EOF in this source, appending them to buf. Read more
Read all bytes, starting at offset, until EOF in this source,
appending them to buf. Read more
Read bytes from the current position without advancing the current position. Read more
Write a buffer into this writer, returning how many bytes were written. Read more
Attempts to write an entire buffer into this writer. Read more
Writes a number of bytes starting from a given offset. Read more
Attempts to write an entire buffer starting from a given offset. Read more
Like write, except that it writes from a slice of buffers. Read more
Is to write_vectored what write_at is to write.
Is to write_all_vectored what write_all_at is to write_all.
Determines if this Writer has an efficient write_vectored_at
implementation. Read more
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
Writes a formatted string into this writer, returning any error encountered. Read more
Seek to an offset, in bytes, in a stream. Read more
Returns the current seek position from the start of the stream. Read more
Is to read_vectored what read_exact is to read.
Query the “status” flags for the self file descriptor.
pub fn new_set_fd_flags(
&self,
fd_flags: FdFlags
) -> Result<SetFdFlags<T>, Error> where
T: AsFilelike + FromFilelike,
pub fn new_set_fd_flags(
&self,
fd_flags: FdFlags
) -> Result<SetFdFlags<T>, Error> where
T: AsFilelike + FromFilelike,
Create a new SetFdFlags value for use with set_fd_flags. Read more
pub fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error> where
T: AsFilelike,
pub fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error> where
T: AsFilelike,
Set the “status” flags for the self file descriptor. Read more