Skip to main content

ReadOnly

Struct ReadOnly 

Source
pub struct ReadOnly<R>(pub R);
Expand description

An adaptor which implements Splittable for any AsyncRead, with the write half being ().

This can be used to create a framed stream with only a reader, using the AsyncReadExt::framed or AsyncReadExt::bytes method.

Tuple Fields§

§0: R

Trait Implementations§

Source§

impl<R: AsyncRead> AsyncRead for ReadOnly<R>

Source§

async fn read<T: IoBufMut>(&mut self, buf: T) -> BufResult<usize, T>

Read some bytes from this source into the IoBufMut buffer and return a BufResult, consisting of the buffer and a usize indicating how many bytes were read. Read more
Source§

async fn read_vectored<T: IoVectoredBufMut>( &mut self, buf: T, ) -> BufResult<usize, T>

Like read, except that it reads into a type implements IoVectoredBufMut. Read more
Source§

impl<R> Splittable for ReadOnly<R>

Source§

type ReadHalf = R

The type of the read half, which normally implements AsyncRead or AsyncReadAt.
Source§

type WriteHalf = ()

The type of the write half, which normally implements AsyncWrite or AsyncWriteAt.
Source§

fn split(self) -> (Self::ReadHalf, Self::WriteHalf)

Consumes self and returns a tuple containing separate read and write halves. Read more

Auto Trait Implementations§

§

impl<R> Freeze for ReadOnly<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for ReadOnly<R>
where R: RefUnwindSafe,

§

impl<R> Send for ReadOnly<R>
where R: Send,

§

impl<R> Sync for ReadOnly<R>
where R: Sync,

§

impl<R> Unpin for ReadOnly<R>
where R: Unpin,

§

impl<R> UnsafeUnpin for ReadOnly<R>
where R: UnsafeUnpin,

§

impl<R> UnwindSafe for ReadOnly<R>
where R: UnwindSafe,

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<A> AsyncReadExt for A
where A: AsyncRead + ?Sized,

Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of AsyncRead. Read more
Source§

async fn append<T: IoBufMut>(&mut self, buf: T) -> BufResult<usize, T>

Same as AsyncRead::read, but it appends data to the end of the buffer; in other words, it read to the beginning of the uninitialized area.
Source§

async fn read_exact<T: IoBufMut>(&mut self, buf: T) -> BufResult<(), T>

Read the exact number of bytes required to fill the buf.
Source§

async fn read_to_string(&mut self, buf: String) -> BufResult<usize, String>

Read all bytes as String until underlying reader reaches EOF.
Source§

async fn read_to_end(&mut self, buf: Vec<u8>) -> BufResult<usize, Vec<u8>>

Read all bytes until underlying reader reaches EOF.
Source§

async fn read_vectored_exact<T: IoVectoredBufMut>( &mut self, buf: T, ) -> BufResult<(), T>

Read the exact number of bytes required to fill the vectored buf.
Source§

fn framed<T, C, F>( self, codec: C, framer: F, ) -> Framed<Self::ReadHalf, Self::WriteHalf, C, F, T, T>
where Self: Splittable + Sized,

Create a framed::Framed reader/writer with the given codec and framer.
Source§

fn bytes(self) -> BytesFramed<Self::ReadHalf, Self::WriteHalf>
where Self: Splittable + Sized,

Available on crate feature bytes only.
Convenience method to create a framed::BytesFramed reader/writter out of a splittable.
Source§

fn read_only(self) -> ReadOnly<Self>
where Self: Sized,

Create a Splittable that uses Self as ReadHalf and () as WriteHalf. Read more
Source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adaptor which reads at most limit bytes from it. Read more
Source§

async fn read_u8(&mut self) -> Result<u8>

Read a big endian u8 from the underlying reader.
Source§

async fn read_u8_le(&mut self) -> Result<u8>

Read a little endian u8 from the underlying reader.
Source§

async fn read_u16(&mut self) -> Result<u16>

Read a big endian u16 from the underlying reader.
Source§

async fn read_u16_le(&mut self) -> Result<u16>

Read a little endian u16 from the underlying reader.
Source§

async fn read_u32(&mut self) -> Result<u32>

Read a big endian u32 from the underlying reader.
Source§

async fn read_u32_le(&mut self) -> Result<u32>

Read a little endian u32 from the underlying reader.
Source§

async fn read_u64(&mut self) -> Result<u64>

Read a big endian u64 from the underlying reader.
Source§

async fn read_u64_le(&mut self) -> Result<u64>

Read a little endian u64 from the underlying reader.
Source§

async fn read_u128(&mut self) -> Result<u128>

Read a big endian u128 from the underlying reader.
Source§

async fn read_u128_le(&mut self) -> Result<u128>

Read a little endian u128 from the underlying reader.
Source§

async fn read_i8(&mut self) -> Result<i8>

Read a big endian i8 from the underlying reader.
Source§

async fn read_i8_le(&mut self) -> Result<i8>

Read a little endian i8 from the underlying reader.
Source§

async fn read_i16(&mut self) -> Result<i16>

Read a big endian i16 from the underlying reader.
Source§

async fn read_i16_le(&mut self) -> Result<i16>

Read a little endian i16 from the underlying reader.
Source§

async fn read_i32(&mut self) -> Result<i32>

Read a big endian i32 from the underlying reader.
Source§

async fn read_i32_le(&mut self) -> Result<i32>

Read a little endian i32 from the underlying reader.
Source§

async fn read_i64(&mut self) -> Result<i64>

Read a big endian i64 from the underlying reader.
Source§

async fn read_i64_le(&mut self) -> Result<i64>

Read a little endian i64 from the underlying reader.
Source§

async fn read_i128(&mut self) -> Result<i128>

Read a big endian i128 from the underlying reader.
Source§

async fn read_i128_le(&mut self) -> Result<i128>

Read a little endian i128 from the underlying reader.
Source§

async fn read_f32(&mut self) -> Result<f32>

Read a big endian f32 from the underlying reader.
Source§

async fn read_f32_le(&mut self) -> Result<f32>

Read a little endian f32 from the underlying reader.
Source§

async fn read_f64(&mut self) -> Result<f64>

Read a big endian f64 from the underlying reader.
Source§

async fn read_f64_le(&mut self) -> Result<f64>

Read a little endian f64 from the underlying reader.
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.