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

#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct Compat01As03<T> { /* fields omitted */ }
This is supported on crate feature compat only.

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

Implementations

impl<T> Compat01As03<T>[src]

pub fn new(object: T) -> Compat01As03<T>

Notable traits for Compat01As03<Fut>

impl<Fut> Future for Compat01As03<Fut> where
    Fut: Future
type Output = Result<<Fut as Future>::Item, <Fut as Future>::Error>;
[src]

This is supported on crate feature compat only.

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

pub fn get_ref(&self) -> &T

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

This is supported on crate feature compat only.

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

pub fn get_mut(&mut self) -> &mut T

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

This is supported on crate feature compat only.

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

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

This is supported on crate feature compat only.

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<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

🔬 This is a nightly-only experimental API. (into_future)

The output that the future will produce on completion.

type Future = F

🔬 This is a nightly-only experimental API. (into_future)

Which kind of future are we turning this into?

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]