[][src]Struct actix::fut::StreamMap

#[must_use = "streams do nothing unless polled"]
pub struct StreamMap<S, F> { /* fields omitted */ }

A stream combinator which will change the type of a stream from one type to another.

This is produced by the ActorStream::map method.

Trait Implementations

impl<S, F, U> ActorStream for StreamMap<S, F> where
    S: ActorStream,
    F: FnMut(S::Item, &mut S::Actor, &mut <S::Actor as Actor>::Context) -> U, 
[src]

type Item = U

The type of item this stream will yield on success.

type Error = S::Error

The type of error this stream may generate.

type Actor = S::Actor

The actor within which this stream runs.

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,
    Self: Sized
[src]

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,
    Self: Sized
[src]

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>,
    Self: Sized
[src]

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>,
    Self: Sized
[src]

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::Error>,
    Self: Sized
[src]

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: Sized,
    Self::Error: Clone
[src]

Add timeout to stream. Read more

fn finish(self) -> StreamFinish<Self> where
    Self: Sized
[src]

Converts a stream to a future that resolves when stream finishes.

impl<S: Debug, F: Debug> Debug for StreamMap<S, F>[src]

Auto Trait Implementations

impl<S, F> Send for StreamMap<S, F> where
    F: Send,
    S: Send

impl<S, F> Sync for StreamMap<S, F> where
    F: Sync,
    S: Sync

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T