pub type CrudStream<'e, T> = Pin<Box<dyn Stream<Item = Result<T, Error>> + Send + 'e>>;
Type alias for a Stream returning items of type Result<T, sqlxError>.
Stream
Result<T, sqlxError>
pub struct CrudStream<'e, T> { /* private fields */ }