Type Alias Stream

Source
pub type Stream<'a, Id, Evt, Err> = BoxStream<'a, Result<Persisted<Id, Evt>, Err>>;
Expand description

Stream is a stream of Persisted Domain Events.

Aliased Typeยง

struct Stream<'a, Id, Evt, Err> {}