adds exhaustive number hits to search result

This commit is contained in:
mposmta 2020-03-25 12:11:37 +01:00
parent a6ac902bf4
commit 6e9d7f94d4
1 changed files with 4 additions and 0 deletions

View File

@ -282,6 +282,8 @@ impl<'a> SearchBuilder<'a> {
hits,
offset: self.offset,
limit: self.limit,
nb_hits: 0,
exhaustive_nb_hits: false,
processing_time_ms: time_ms,
query: self.query.to_string(),
};
@ -364,6 +366,8 @@ pub struct SearchResult {
pub hits: Vec<SearchHit>,
pub offset: usize,
pub limit: usize,
pub nb_hits: usize,
pub exhaustive_nb_hits: bool,
pub processing_time_ms: usize,
pub query: String,
}