IOReader

Struct IOReader 

Source
pub struct IOReader<IO, F: FnMut(&mut IO, Result<IODirection, Error>)> {
    pub io: IO,
    pub f: F,
}
Expand description

The most common I/O object is one from which you can read asynchronously. This is a simple convenience wrapper for that kind of I/O object.

Fields§

§io: IO§f: F

Trait Implementations§

Source§

impl<IO, F> IOAble for IOReader<IO, F>

Available on Unix only.

Auto Trait Implementations§

§

impl<IO, F> Freeze for IOReader<IO, F>
where IO: Freeze, F: Freeze,

§

impl<IO, F> RefUnwindSafe for IOReader<IO, F>

§

impl<IO, F> Send for IOReader<IO, F>
where IO: Send, F: Send,

§

impl<IO, F> Sync for IOReader<IO, F>
where IO: Sync, F: Sync,

§

impl<IO, F> Unpin for IOReader<IO, F>
where IO: Unpin, F: Unpin,

§

impl<IO, F> UnwindSafe for IOReader<IO, F>
where IO: UnwindSafe, F: 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<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.