[][src]Struct transform_stream::AsyncStream

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

Asynchronous stream of items

Implementations

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

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

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

impl<'a, T> AsyncStream<T, BoxFuture<'a, ()>>[src]

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

Constructs an AsyncStream 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, G> FusedStream for AsyncStream<T, G> where
    G: Future<Output = ()>, 
[src]

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

type Item = T

Values yielded by the stream.

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

Auto Trait Implementations

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

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

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

impl<T, G = Pin<Box<dyn Future<Output = ()> + 'static + Send>>> !UnwindSafe for AsyncStream<T, 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