Struct meilisearch_sdk::search::SearchResults
source · pub struct SearchResults<T> {Show 13 fields
pub hits: Vec<SearchResult<T>>,
pub offset: Option<usize>,
pub limit: Option<usize>,
pub estimated_total_hits: Option<usize>,
pub page: Option<usize>,
pub hits_per_page: Option<usize>,
pub total_hits: Option<usize>,
pub total_pages: Option<usize>,
pub facet_distribution: Option<HashMap<String, HashMap<String, usize>>>,
pub facet_stats: Option<HashMap<String, FacetStats>>,
pub processing_time_ms: usize,
pub query: String,
pub index_uid: Option<String>,
}Expand description
A struct containing search results and other information about the search.
Fields§
§hits: Vec<SearchResult<T>>Results of the query.
offset: Option<usize>Number of documents skipped.
limit: Option<usize>Number of results returned.
estimated_total_hits: Option<usize>Estimated total number of matches.
page: Option<usize>§hits_per_page: Option<usize>§total_hits: Option<usize>§total_pages: Option<usize>§facet_distribution: Option<HashMap<String, HashMap<String, usize>>>Distribution of the given facets.
facet_stats: Option<HashMap<String, FacetStats>>facet stats of the numerical facets requested in the facet search parameter.
processing_time_ms: usizeProcessing time of the query.
query: StringQuery originating the response.
index_uid: Option<String>Index uid on which the search was made.
Trait Implementations§
source§impl<T: Clone> Clone for SearchResults<T>
impl<T: Clone> Clone for SearchResults<T>
source§fn clone(&self) -> SearchResults<T>
fn clone(&self) -> SearchResults<T>
Returns a copy 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<T: Debug> Debug for SearchResults<T>
impl<T: Debug> Debug for SearchResults<T>
source§impl<'de, T> Deserialize<'de> for SearchResults<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for SearchResults<T>where T: Deserialize<'de>,
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<T> RefUnwindSafe for SearchResults<T>where T: RefUnwindSafe,
impl<T> Send for SearchResults<T>where T: Send,
impl<T> Sync for SearchResults<T>where T: Sync,
impl<T> Unpin for SearchResults<T>where T: Unpin,
impl<T> UnwindSafe for SearchResults<T>where T: UnwindSafe,
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