Enum futures_state_stream::StreamEvent [] [src]

pub enum StreamEvent<I, S> {
    Next(I),
    Done(S),
}

An event from a StateStream.

Variants

The next item in the stream.

The state of the stream, returned when streaming has completed.