pub struct Cursor {
pub sort_values: Vec<Option<Value>>,
pub key: Vec<u8>,
}Expand description
Logical continuation position after one emitted record.
Fields§
§sort_values: Vec<Option<Value>>One normalized sort value per requested sort field. None represents
both missing and explicit null for sorting.
key: Vec<u8>Mandatory final binary-key tie-breaker.
Trait Implementations§
impl Eq for Cursor
impl StructuralPartialEq for Cursor
Auto Trait Implementations§
impl Freeze for Cursor
impl RefUnwindSafe for Cursor
impl Send for Cursor
impl Sync for Cursor
impl Unpin for Cursor
impl UnsafeUnpin for Cursor
impl UnwindSafe for Cursor
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