[][src]Struct transform_stream::AsyncTryStream

pub struct AsyncTryStream<T, E, G = BoxFuture<'static, Result<(), E>>> { /* fields omitted */ }

Asynchronous stream of results

Implementations

impl<T, E, G> AsyncTryStream<T, E, G> where
    G: Future<Output = Result<(), E>>, 
[src]

pub fn new<F>(f: F) -> Self where
    F: FnOnce(Yielder<Result<T, E>>) -> G, 
[src]

Constructs an AsyncTryStream by a factory function which returns a future.

impl<'a, T, E> AsyncTryStream<T, E, BoxFuture<'a, Result<(), E>>>[src]

pub fn new_boxed<F, G>(f: F) -> Self where
    F: FnOnce(Yielder<Result<T, E>>) -> G,
    G: Future<Output = Result<(), E>> + Send + 'a,
    E: 'a, 
[src]

Constructs an AsyncTryStream by a factory function which returns a future.

The G is wrapped as an owned dynamically typed Future which allows you to write the type.

Trait Implementations

impl<T, E, G> FusedStream for AsyncTryStream<T, E, G> where
    G: Future<Output = Result<(), E>>, 
[src]

impl<T, E, G> Stream for AsyncTryStream<T, E, G> where
    G: Future<Output = Result<(), E>>, 
[src]

type Item = Result<T, E>

Values yielded by the stream.

impl<'__pin, T, E, G> Unpin for AsyncTryStream<T, E, G> where
    __Origin<'__pin, T, E, G>: Unpin
[src]

Auto Trait Implementations

impl<T, E, G = Pin<Box<dyn Future<Output = Result<(), E>> + 'static + Send>>> !RefUnwindSafe for AsyncTryStream<T, E, G>

impl<T, E, G> Send for AsyncTryStream<T, E, G> where
    E: Send + Sync,
    G: Send,
    T: Send + Sync

impl<T, E, G> Sync for AsyncTryStream<T, E, G> where
    E: Send + Sync,
    G: Sync,
    T: Send + Sync

impl<T, E, G = Pin<Box<dyn Future<Output = Result<(), E>> + 'static + Send>>> !UnwindSafe for AsyncTryStream<T, E, G>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?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, U> Into<U> for T where
    U: From<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<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