[][src]Struct async_stdio::AsStdIo

pub struct AsStdIo<S> { /* fields omitted */ }

Adapter to use an async byte stream as a std::io::{Read, Write} type

For correct operation, WakerCtrl::register must be called before any calls to read or write. If the async stream would return Poll::Pending, it will be converted to an io::ErrorKind::WouldBlock error.

Methods

impl<S> AsStdIo<S>[src]

pub fn new(stream: S, waker: Option<&Waker>) -> (Self, WakerCtrl)[src]

Wrap the async stream and initialize the wrapper with the provided waker.

If no waker is provided, it will be initialized with a no-op waker.

Also returns a handle that can be used to control the waker.

pub fn with_context<F, T>(&mut self, f: F) -> T where
    F: for<'c> FnOnce(Pin<&mut S>, &mut Context<'c>) -> T,
    S: Unpin
[src]

Get a pinned reference to the internal stream and a context with which to poll it.

Sometimes useful if you need to perform some operation such as [AsyncWrite::close] on it which doesn't have an std counterpart.

Trait Implementations

impl<S: Debug> Debug for AsStdIo<S>[src]

impl<S> Deref for AsStdIo<S>[src]

type Target = S

The resulting type after dereferencing.

impl<S> DerefMut for AsStdIo<S>[src]

impl<S> Read for AsStdIo<S> where
    S: AsyncRead + Unpin
[src]

impl<S> Write for AsStdIo<S> where
    S: AsyncWrite + Unpin
[src]

Auto Trait Implementations

impl<S> Send for AsStdIo<S> where
    S: Send

impl<S> Sync for AsStdIo<S> where
    S: Sync

impl<S> Unpin for AsStdIo<S> where
    S: Unpin

impl<S> !UnwindSafe for AsStdIo<S>

impl<S> !RefUnwindSafe for AsStdIo<S>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]