A type alias for a Stream that emits fallible values.
Stream
Used for streaming operations that can emit successful values or failures.
typedef StreamEither<T> = Stream<Either<Failure, T>>;