DriverQuery

Trait DriverQuery 

Source
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.

Required Methods§

Source

fn poll_next(&self, cx: &mut Context<'_>) -> Poll<Result<Option<Row>>>

Fetch next row of the query result.

Implementors§