pub struct Cursor<'client> { /* private fields */ }
Expand description
Represents a PostgreSQL cursor.
The actual cursor in the database is only created and active while
Iter
is in scope and calls to next()
return Some
.
Implementations§
Trait Implementations§
Source§impl<'a, 'client> IntoIterator for &'a mut Cursor<'client>
impl<'a, 'client> IntoIterator for &'a mut Cursor<'client>
Auto Trait Implementations§
impl<'client> Freeze for Cursor<'client>
impl<'client> !RefUnwindSafe for Cursor<'client>
impl<'client> Send for Cursor<'client>
impl<'client> !Sync for Cursor<'client>
impl<'client> Unpin for Cursor<'client>
impl<'client> !UnwindSafe for Cursor<'client>
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