[][src]Struct futures::compat::Compat01As03

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct Compat01As03<T> { /* fields omitted */ }

Converts a futures 0.1 Future, Stream, AsyncRead, or AsyncWrite object to a futures 0.3-compatible version,

Methods

impl<T> Compat01As03<T>[src]

Important traits for Compat01As03<Fut>
pub fn new(object: T) -> Compat01As03<T>[src]

Wraps a futures 0.1 Future, Stream, AsyncRead, or AsyncWrite object in a futures 0.3-compatible wrapper.

Important traits for &'_ mut F
pub fn get_ref(&self) -> &T[src]

Get a reference to 0.1 Future, Stream, AsyncRead, or AsyncWrite object contained within.

Important traits for &'_ mut F
pub fn get_mut(&mut self) -> &mut T[src]

Get a mutable reference to 0.1 Future, Stream, AsyncRead or AsyncWrite object contained within.

pub fn into_inner(self) -> T[src]

Consume this wrapper to return the underlying 0.1 Future, Stream, AsyncRead, or AsyncWrite object.

Trait Implementations

impl<R> AsyncRead for Compat01As03<R> where
    R: AsyncRead
[src]

impl<W> AsyncWrite for Compat01As03<W> where
    W: AsyncWrite
[src]

impl<T> Debug for Compat01As03<T> where
    T: Debug
[src]

impl<Fut> Future for Compat01As03<Fut> where
    Fut: Future
[src]

type Output = Result<<Fut as Future>::Item, <Fut as Future>::Error>

The type of value produced on completion.

impl<St> Stream for Compat01As03<St> where
    St: Stream
[src]

type Item = Result<<St as Stream>::Item, <St as Stream>::Error>

Values yielded by the stream.

impl<T> Unpin for Compat01As03<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Compat01As03<T>

impl<T> Send for Compat01As03<T> where
    T: Send

impl<T> !Sync for Compat01As03<T>

impl<T> !UnwindSafe for Compat01As03<T>

Blanket Implementations

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

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized
[src]

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

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

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

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]

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

impl<T> StreamExt for T where
    T: Stream + ?Sized
[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<F, T, E> TryFuture for F where
    F: Future<Output = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<Fut> TryFutureExt for Fut where
    Fut: TryFuture + ?Sized
[src]

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<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<S> TryStreamExt for S where
    S: TryStream + ?Sized
[src]