Skip to main content

AsyncSliceWriter

Struct AsyncSliceWriter 

Source
pub struct AsyncSliceWriter<'b> { /* private fields */ }
Expand description

Writes asynchronously to a slice of bytes, without attempting to allocate more memory if a write is attempted past the end of the slice.

Should a write be attempted past the end of the slice without any remaining space, an error of WriteZero will be returned.

§Examples

use futures::{AsyncWriteExt, executor};
use diny_core::util::AsyncSliceWriter;
 
let     send = [7u8; 5];
let mut buff = [0u8; 7];
let mut writer = AsyncSliceWriter::from(&mut buff[..]);
executor::block_on(writer.write(&send));
assert_eq!(send, writer.as_written());

The written bytes can then be easily retrieved by using an AsyncSliceReader

use futures::AsyncReadExt;
use diny_core::util::AsyncSliceReader;

let mut recv = [0u8; 5];
let mut reader = AsyncSliceReader::from(&writer);
executor::block_on(reader.read(&mut recv));
assert_eq!(send, recv);

Implementations§

Source§

impl<'b> AsyncSliceWriter<'b>

Source

pub fn new(buf: &'b mut [u8]) -> Self

Instantiates a new async reader that implements AsyncWrite over the provided slice.

Source

pub fn bytes_written(&self) -> usize

Returns the number of bytes that have been written so far into the provided slice.

Source

pub fn as_written(&self) -> &[u8]

Returns a read-only slice of the data that has been written so far into the provided slice.

Trait Implementations§

Source§

impl AsyncWrite for AsyncSliceWriter<'_>

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

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more
Source§

fn poll_close(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<()>>

Attempt to close the object. Read more
Source§

fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>

Attempt to write bytes from bufs into the object using vectored IO operations. Read more
Source§

impl<'b> From<&'b AsyncSliceWriter<'b>> for AsyncSliceReader<'b>

Source§

fn from(s: &'b AsyncSliceWriter<'b>) -> Self

Converts to this type from the input type.
Source§

impl<'b> From<&'b mut [u8]> for AsyncSliceWriter<'b>

Source§

fn from(buf: &'b mut [u8]) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'b> !UnwindSafe for AsyncSliceWriter<'b>

§

impl<'b> Freeze for AsyncSliceWriter<'b>

§

impl<'b> RefUnwindSafe for AsyncSliceWriter<'b>

§

impl<'b> Send for AsyncSliceWriter<'b>

§

impl<'b> Sync for AsyncSliceWriter<'b>

§

impl<'b> Unpin for AsyncSliceWriter<'b>

§

impl<'b> UnsafeUnpin for AsyncSliceWriter<'b>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<W> AsyncWriteExt for W
where W: AsyncWrite + ?Sized,

Source§

fn flush(&mut self) -> Flush<'_, Self>
where Self: Unpin,

Creates a future which will entirely flush this AsyncWrite. Read more
Source§

fn close(&mut self) -> Close<'_, Self>
where Self: Unpin,

Creates a future which will entirely close this AsyncWrite.
Source§

fn write<'a>(&'a mut self, buf: &'a [u8]) -> Write<'a, Self>
where Self: Unpin,

Creates a future which will write bytes from buf into the object. Read more
Source§

fn write_vectored<'a>( &'a mut self, bufs: &'a [IoSlice<'a>], ) -> WriteVectored<'a, Self>
where Self: Unpin,

Creates a future which will write bytes from bufs into the object using vectored IO operations. Read more
Source§

fn write_all<'a>(&'a mut self, buf: &'a [u8]) -> WriteAll<'a, Self>
where Self: Unpin,

Write data into this object. Read more
Source§

fn into_sink<Item>(self) -> IntoSink<Self, Item>
where Item: AsRef<[u8]>, Self: Sized,

Available on crate feature sink only.
Allow using an AsyncWrite as a Sink<Item: AsRef<[u8]>>. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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.

Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.