pub trait DriverQuery: DriverTableMetadata {
// Required method
fn poll_next(&self, cx: &mut Context<'_>) -> Poll<Result<Option<Row>>>;
}Available on crate feature
rdbc only.Expand description
Represents a query statement, created by query functions.