pub struct GetSearchResultsParams {
pub searchId: String,
pub fromIndex: u64,
pub toIndex: u64,
}Expand description
Returns search results from given ‘fromIndex’ to given ‘toIndex’ from the search with the given identifier.
Fields§
§searchId: StringUnique search session identifier.
fromIndex: u64Start index of the search result to be returned.
toIndex: u64End index of the search result to be returned.
Trait Implementations§
Source§impl Clone for GetSearchResultsParams
impl Clone for GetSearchResultsParams
Source§fn clone(&self) -> GetSearchResultsParams
fn clone(&self) -> GetSearchResultsParams
Returns a duplicate of the value. Read more
1.0.0 · 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 GetSearchResultsParams
impl Debug for GetSearchResultsParams
Source§impl Default for GetSearchResultsParams
impl Default for GetSearchResultsParams
Source§fn default() -> GetSearchResultsParams
fn default() -> GetSearchResultsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSearchResultsParams
impl<'de> Deserialize<'de> for GetSearchResultsParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetSearchResultsParams
impl RefUnwindSafe for GetSearchResultsParams
impl Send for GetSearchResultsParams
impl Sync for GetSearchResultsParams
impl Unpin for GetSearchResultsParams
impl UnsafeUnpin for GetSearchResultsParams
impl UnwindSafe for GetSearchResultsParams
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