Struct futures_util::compat::Compat01As03 [−][src]
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) -> 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<T: Debug> Debug for Compat01As03<T>
[src][+]
impl<Fut: Future01> Future for Compat01As03<Fut>
[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<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<F> IntoFuture for F where
F: Future,
[src][+]
F: Future,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<F, T, E> TryFuture for F where
F: Future<Output = Result<T, E>> + ?Sized,
[src][+]
F: Future<Output = Result<T, E>> + ?Sized,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<S, T, E> TryStream for S where
S: Stream<Item = Result<T, E>> + ?Sized,
[src][+]
S: Stream<Item = Result<T, E>> + ?Sized,