pub struct StreamingRows<'a> { /* private fields */ }Expand description
Streaming row access for FR-7 compliance.
This struct provides access to query results in a streaming fashion,
where the transaction is kept alive for the duration of row iteration.
The lifetime 'a is tied to the transaction scope.
Implementations§
Source§impl<'a> StreamingRows<'a>
impl<'a> StreamingRows<'a>
Auto Trait Implementations§
impl<'a> Freeze for StreamingRows<'a>
impl<'a> !RefUnwindSafe for StreamingRows<'a>
impl<'a> !Send for StreamingRows<'a>
impl<'a> !Sync for StreamingRows<'a>
impl<'a> Unpin for StreamingRows<'a>
impl<'a> !UnwindSafe for StreamingRows<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more