Struct compio_io::util::Null

source ·
pub struct Null { /* private fields */ }
Expand description

An empty reader and writer constructed via null.

Trait Implementations§

source§

impl AsyncBufRead for Null

source§

async fn fill_buf(&mut self) -> Result<&[u8]>

Try fill the internal buffer with data
source§

fn consume(&mut self, _: usize)

Mark how much data is read
source§

impl AsyncRead for Null

source§

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

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<V: IoVectoredBufMut>( &mut self, buf: V, ) -> BufResult<usize, V>

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

impl AsyncWrite for Null

source§

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

Write some bytes from the buffer into this source and return a BufResult, consisting of the buffer and a usize indicating how many bytes were written.
source§

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

Like write, except that it write bytes from a buffer implements IoVectoredBuf into the source. Read more
source§

async fn flush(&mut self) -> Result<()>

Attempts to flush the object, ensuring that any buffered data reach their destination.
source§

async fn shutdown(&mut self) -> Result<()>

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down.
source§

impl Clone for Null

source§

fn clone(&self) -> Null

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 Debug for Null

source§

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

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

impl Hash for Null

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Null

source§

fn cmp(&self, other: &Null) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Null

source§

fn eq(&self, other: &Null) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Null

source§

fn partial_cmp(&self, other: &Null) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for Null

source§

impl Eq for Null

source§

impl StructuralPartialEq for Null

Auto Trait Implementations§

§

impl Freeze for Null

§

impl RefUnwindSafe for Null

§

impl Send for Null

§

impl Sync for Null

§

impl Unpin for Null

§

impl UnwindSafe for Null

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 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_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 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<A> AsyncWriteExt for A
where A: AsyncWrite + ?Sized,

source§

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

Creates a “by reference” adaptor for this instance of AsyncWrite. Read more
source§

async fn write_all<T: IoBuf>(&mut self, buf: T) -> BufResult<(), T>

Write the entire contents of a buffer into this writer.
source§

async fn write_vectored_all<T: IoVectoredBuf>( &mut self, buf: T, ) -> BufResult<(), T>

Write the entire contents of a buffer into this writer. Like AsyncWrite::write_vectored, except that it tries to write the entire contents of the buffer into this writer.
source§

async fn write_u8(&mut self, num: u8) -> Result<()>

Write a big endian u8 into the underlying writer.
source§

async fn write_u8_le(&mut self, num: u8) -> Result<()>

Write a little endian u8 into the underlying writer.
source§

async fn write_u16(&mut self, num: u16) -> Result<()>

Write a big endian u16 into the underlying writer.
source§

async fn write_u16_le(&mut self, num: u16) -> Result<()>

Write a little endian u16 into the underlying writer.
source§

async fn write_u32(&mut self, num: u32) -> Result<()>

Write a big endian u32 into the underlying writer.
source§

async fn write_u32_le(&mut self, num: u32) -> Result<()>

Write a little endian u32 into the underlying writer.
source§

async fn write_u64(&mut self, num: u64) -> Result<()>

Write a big endian u64 into the underlying writer.
source§

async fn write_u64_le(&mut self, num: u64) -> Result<()>

Write a little endian u64 into the underlying writer.
source§

async fn write_u128(&mut self, num: u128) -> Result<()>

Write a big endian u128 into the underlying writer.
source§

async fn write_u128_le(&mut self, num: u128) -> Result<()>

Write a little endian u128 into the underlying writer.
source§

async fn write_i8(&mut self, num: i8) -> Result<()>

Write a big endian i8 into the underlying writer.
source§

async fn write_i8_le(&mut self, num: i8) -> Result<()>

Write a little endian i8 into the underlying writer.
source§

async fn write_i16(&mut self, num: i16) -> Result<()>

Write a big endian i16 into the underlying writer.
source§

async fn write_i16_le(&mut self, num: i16) -> Result<()>

Write a little endian i16 into the underlying writer.
source§

async fn write_i32(&mut self, num: i32) -> Result<()>

Write a big endian i32 into the underlying writer.
source§

async fn write_i32_le(&mut self, num: i32) -> Result<()>

Write a little endian i32 into the underlying writer.
source§

async fn write_i64(&mut self, num: i64) -> Result<()>

Write a big endian i64 into the underlying writer.
source§

async fn write_i64_le(&mut self, num: i64) -> Result<()>

Write a little endian i64 into the underlying writer.
source§

async fn write_i128(&mut self, num: i128) -> Result<()>

Write a big endian i128 into the underlying writer.
source§

async fn write_i128_le(&mut self, num: i128) -> Result<()>

Write a little endian i128 into the underlying writer.
source§

async fn write_f32(&mut self, num: f32) -> Result<()>

Write a big endian f32 into the underlying writer.
source§

async fn write_f32_le(&mut self, num: f32) -> Result<()>

Write a little endian f32 into the underlying writer.
source§

async fn write_f64(&mut self, num: f64) -> Result<()>

Write a big endian f64 into the underlying writer.
source§

async fn write_f64_le(&mut self, num: f64) -> Result<()>

Write a little endian f64 into the underlying writer.
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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

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