pub struct ScrollStmt {
pub collection: String,
pub limit: u64,
pub filter: Option<Box<FilterExpr>>,
pub after: Option<PointId>,
pub order_by: Option<ScrollOrderBy>,
pub shard_key: Option<ShardKey>,
pub with_payload: Option<PayloadSelector>,
pub with_vector: Option<VectorSelector>,
pub limit_param: Option<String>,
pub limit_span: Option<Span>,
}Expand description
SCROLL FROM <collection> … LIMIT n — cursor-based point iteration.
Fields§
§collection: StringCollection to scroll.
limit: u64Maximum number of points per page.
filter: Option<Box<FilterExpr>>Optional WHERE filter.
after: Option<PointId>AFTER cursor — resume scrolling after this point ID.
order_by: Option<ScrollOrderBy>Optional ORDER BY payload ordering (OpenAPI order_by).
shard_key: Option<ShardKey>SHARD '<key>' routing key.
with_payload: Option<PayloadSelector>Optional WITH PAYLOAD selector. Defaults to all payload when None.
with_vector: Option<VectorSelector>Optional WITH VECTOR selector. Defaults to no vectors when None.
limit_param: Option<String>Optional limit parameter placeholder (:limit or ?).
limit_span: Option<Span>Source span of the limit parameter placeholder, if unbound.
Trait Implementations§
Source§impl Clone for ScrollStmt
impl Clone for ScrollStmt
Source§fn clone(&self) -> ScrollStmt
fn clone(&self) -> ScrollStmt
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 ScrollStmt
impl Debug for ScrollStmt
Source§impl PartialEq for ScrollStmt
impl PartialEq for ScrollStmt
impl StructuralPartialEq for ScrollStmt
Auto Trait Implementations§
impl Freeze for ScrollStmt
impl RefUnwindSafe for ScrollStmt
impl Send for ScrollStmt
impl Sync for ScrollStmt
impl Unpin for ScrollStmt
impl UnsafeUnpin for ScrollStmt
impl UnwindSafe for ScrollStmt
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