pub struct OwnedReadHalf { /* private fields */ }
Expand description

Owned read half of a UnixStream, created by into_split.

Reading from an OwnedReadHalf is usually done using the convenience methods found on the AsyncReadExt trait. Examples import this trait through the prelude.

Implementations

Attempts to put the two halves of a UnixStream back together and recover the original socket. Succeeds only if the two halves originated from the same call to into_split.

Trait Implementations

Performs the conversion.

Prepares an uninitialized buffer to be safe to pass to read. Returns true if the supplied buffer was zeroed out. Read more

Attempts to read from the AsyncRead into buf. Read more

Pulls some bytes from this source into the specified BufMut, returning how many bytes were read. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.