Skip to main content

Module async_stream_query

Module async_stream_query 

Source
Expand description

Streaming async query results.

This module is the async mirror of the sync QueryStream: it yields rows in chunks so callers can process arbitrarily large result sets with constant memory. The lifetime parameter ties the stream to the owning AsyncClient — the connection mutex is held for the duration of iteration.

Structs§

AsyncQueryStream
Streaming iterator for query results without materializing all rows (async).