pub struct ScrollResult {
pub rows: Vec<Row>,
pub position: i64,
pub at_beginning: bool,
pub at_end: bool,
}Expand description
Result from a scroll operation
Fields§
§rows: Vec<Row>The rows fetched
position: i64New cursor position after scroll
at_beginning: boolWhether the cursor hit the beginning
at_end: boolWhether the cursor hit the end
Implementations§
Source§impl ScrollResult
impl ScrollResult
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScrollResult
impl RefUnwindSafe for ScrollResult
impl Send for ScrollResult
impl Sync for ScrollResult
impl Unpin for ScrollResult
impl UnwindSafe for ScrollResult
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more