use async_trait;
use crateResult;
use crate;
/// Asynchronous, row-by-row view of a query result.
///
/// Streams avoid materialising the entire result in memory and are the
/// preferred execution path for unbounded or interactively browsed result
/// sets. The trait is object-safe; concrete driver implementations live in
/// the corresponding driver crate.