pub struct ScrollResult {
pub points: Vec<ScoredPoint>,
pub next_offset: Option<PointId>,
}Expand description
Result of a Scroll operation.
Fields§
§points: Vec<ScoredPoint>Points in this page.
next_offset: Option<PointId>Offset for the next page (None when no more pages).
Auto Trait Implementations§
impl Freeze for ScrollResult
impl RefUnwindSafe for ScrollResult
impl Send for ScrollResult
impl Sync for ScrollResult
impl Unpin for ScrollResult
impl UnsafeUnpin for ScrollResult
impl UnwindSafe for ScrollResult
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