pub struct ScrollStmt {
pub collection: String,
pub limit: u64,
pub filter: Option<Box<FilterExpr>>,
pub after: Option<PointId>,
pub shard_key: Option<String>,
pub with_vector: Option<VectorSelector>,
}Fields§
§collection: String§limit: u64§filter: Option<Box<FilterExpr>>§after: Option<PointId>§shard_key: Option<String>§with_vector: Option<VectorSelector>Optional WITH VECTOR selector. Defaults to no vectors when None.
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