pub struct ActiveCursor {
pub cursor_id: String,
pub column_count: usize,
}Expand description
Server-side cursor metadata. Held by the client when a query has
remaining rows; consumed (closed) on close_query or when the next
execute call supersedes it.
Fields§
§cursor_id: String§column_count: usizeTrait Implementations§
Source§impl Clone for ActiveCursor
impl Clone for ActiveCursor
Source§fn clone(&self) -> ActiveCursor
fn clone(&self) -> ActiveCursor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ActiveCursor
impl RefUnwindSafe for ActiveCursor
impl Send for ActiveCursor
impl Sync for ActiveCursor
impl Unpin for ActiveCursor
impl UnsafeUnpin for ActiveCursor
impl UnwindSafe for ActiveCursor
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