pub struct SearchAfterState {
pub client: Arc<OsClient>,
pub index: String,
pub stop: bool,
pub size: u64,
pub query: Query,
pub sort: SortCollection,
pub search_after: Option<Terms>,
}Expand description
Represents the state of a search operation that uses the “search after” feature.
Fields§
§client: Arc<OsClient>§index: String§stop: bool§size: u64§query: Query§sort: SortCollection§search_after: Option<Terms>Auto Trait Implementations§
impl !RefUnwindSafe for SearchAfterState
impl !UnwindSafe for SearchAfterState
impl Freeze for SearchAfterState
impl Send for SearchAfterState
impl Sync for SearchAfterState
impl Unpin for SearchAfterState
impl UnsafeUnpin for SearchAfterState
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