Struct futures_util::compat::Compat01As03 [−][src]
#[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,
Implementations
impl<T> Compat01As03<T>
[src]
impl<T> Compat01As03<T>
[src]pub fn new(object: T) -> Self
[src]
Wraps a futures 0.1 Future, Stream, AsyncRead, or AsyncWrite object in a futures 0.3-compatible wrapper.
pub fn get_ref(&self) -> &T
[src]
Get a reference to 0.1 Future, Stream, AsyncRead, or AsyncWrite object contained within.
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<Fut: Future01> Future for Compat01As03<Fut>
[src]
impl<Fut: Future01> Future for Compat01As03<Fut>
[src]impl<St: Stream01> Stream for Compat01As03<St>
[src]
impl<St: Stream01> Stream for Compat01As03<St>
[src]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,
T: Send,
impl<T> !Sync for Compat01As03<T>
impl<T> !UnwindSafe for Compat01As03<T>
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[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?