pub struct EdgeSeekPage {
pub items: Vec<Edge>,
pub next_after: Option<Uuid>,
}Expand description
A page of edges returned by keyset (seek) pagination, ordered by id
ascending — an indexed range scan against the (namespace, id) primary
key rather than an OFFSET skip. next_after is Some(last_id) when
more rows remain past this page.
Fields§
§items: Vec<Edge>§next_after: Option<Uuid>Trait Implementations§
Source§impl Clone for EdgeSeekPage
impl Clone for EdgeSeekPage
Source§fn clone(&self) -> EdgeSeekPage
fn clone(&self) -> EdgeSeekPage
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 moreSource§impl Debug for EdgeSeekPage
impl Debug for EdgeSeekPage
Source§impl Default for EdgeSeekPage
impl Default for EdgeSeekPage
Source§fn default() -> EdgeSeekPage
fn default() -> EdgeSeekPage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EdgeSeekPage
impl RefUnwindSafe for EdgeSeekPage
impl Send for EdgeSeekPage
impl Sync for EdgeSeekPage
impl Unpin for EdgeSeekPage
impl UnsafeUnpin for EdgeSeekPage
impl UnwindSafe for EdgeSeekPage
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