Struct actix_web::actix::fut::StreamThen [−][src]
#[must_use = "streams do nothing unless polled"]pub struct StreamThen<S, F, U> where
U: IntoActorFuture, { /* fields omitted */ }
A stream combinator which chains a computation onto each item produced by a stream.
This structure is produced by the ActorStream::then method.
Trait Implementations
impl<S, F, U> ActorStream for StreamThen<S, F, U> where
F: FnMut(Result<<S as ActorStream>::Item, <S as ActorStream>::Error>, &mut <S as ActorStream>::Actor, &mut <<S as ActorStream>::Actor as Actor>::Context) -> U,
S: ActorStream,
U: IntoActorFuture<Actor = <S as ActorStream>::Actor>, [src]
impl<S, F, U> ActorStream for StreamThen<S, F, U> where
F: FnMut(Result<<S as ActorStream>::Item, <S as ActorStream>::Error>, &mut <S as ActorStream>::Actor, &mut <<S as ActorStream>::Actor as Actor>::Context) -> U,
S: ActorStream,
U: IntoActorFuture<Actor = <S as ActorStream>::Actor>, type Item = <U as IntoActorFuture>::Item
The type of item this stream will yield on success.
type Error = <U as IntoActorFuture>::Error
The type of error this stream may generate.
type Actor = <S as ActorStream>::Actor
The actor within which this stream runs.
fn poll(
&mut self,
act: &mut <S as ActorStream>::Actor,
ctx: &mut <<S as ActorStream>::Actor as Actor>::Context
) -> Result<Async<Option<<U as IntoActorFuture>::Item>>, <U as IntoActorFuture>::Error>[src]
fn poll(
&mut self,
act: &mut <S as ActorStream>::Actor,
ctx: &mut <<S as ActorStream>::Actor as Actor>::Context
) -> Result<Async<Option<<U as IntoActorFuture>::Item>>, <U as IntoActorFuture>::Error>fn map<U, F>(self, f: F) -> StreamMap<Self, F> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U, [src]
fn map<U, F>(self, f: F) -> StreamMap<Self, F> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U, Converts a stream of type T to a stream of type U.
fn map_err<E, F>(self, f: F) -> StreamMapErr<Self, F> where
F: FnMut(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E, [src]
fn map_err<E, F>(self, f: F) -> StreamMapErr<Self, F> where
F: FnMut(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E, Converts a stream of error type T to a stream of error type E.
fn then<F, U>(self, f: F) -> StreamThen<Self, F, U> where
F: FnMut(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Actor = Self::Actor>, [src]
fn then<F, U>(self, f: F) -> StreamThen<Self, F, U> where
F: FnMut(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Actor = Self::Actor>, Chain on a computation for when a value is ready, passing the resulting item to the provided closure f. Read more
fn and_then<F, U>(self, f: F) -> StreamAndThen<Self, F, U> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>, [src]
fn and_then<F, U>(self, f: F) -> StreamAndThen<Self, F, U> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>, Chain on a computation for when a value is ready, passing the successful results to the provided closure f. Read more
fn fold<F, T, Fut>(self, init: T, f: F) -> StreamFold<Self, F, Fut, T> where
F: FnMut(T, Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> Fut,
Fut: IntoActorFuture<Actor = Self::Actor, Item = T>,
Self::Error: From<<Fut as IntoActorFuture>::Error>, [src]
fn fold<F, T, Fut>(self, init: T, f: F) -> StreamFold<Self, F, Fut, T> where
F: FnMut(T, Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> Fut,
Fut: IntoActorFuture<Actor = Self::Actor, Item = T>,
Self::Error: From<<Fut as IntoActorFuture>::Error>, Execute an accumulating computation over a stream, collecting all the values into one final result. Read more
fn timeout(self, timeout: Duration, err: Self::Error) -> StreamTimeout<Self> where
Self::Error: Clone, [src]
fn timeout(self, timeout: Duration, err: Self::Error) -> StreamTimeout<Self> where
Self::Error: Clone, Add timeout to stream. Read more
fn finish(self) -> StreamFinish<Self>[src]
fn finish(self) -> StreamFinish<Self>Converts a stream to a future that resolves when stream finishes.
impl<S, F, U> Debug for StreamThen<S, F, U> where
F: Debug,
S: Debug,
U: Debug + IntoActorFuture,
<U as IntoActorFuture>::Future: Debug, [src]
impl<S, F, U> Debug for StreamThen<S, F, U> where
F: Debug,
S: Debug,
U: Debug + IntoActorFuture,
<U as IntoActorFuture>::Future: Debug, Auto Trait Implementations
impl<S, F, U> Send for StreamThen<S, F, U> where
F: Send,
S: Send,
<U as IntoActorFuture>::Future: Send,
impl<S, F, U> Send for StreamThen<S, F, U> where
F: Send,
S: Send,
<U as IntoActorFuture>::Future: Send, impl<S, F, U> Sync for StreamThen<S, F, U> where
F: Sync,
S: Sync,
<U as IntoActorFuture>::Future: Sync,
impl<S, F, U> Sync for StreamThen<S, F, U> where
F: Sync,
S: Sync,
<U as IntoActorFuture>::Future: Sync,