pub struct MultiCollectionSearchResponse {
pub results: Vec<IntelligentSearchResult>,
pub total_results: usize,
pub duration_ms: u64,
pub collections_searched: Vec<String>,
pub results_per_collection: Option<HashMap<String, usize>>,
pub metadata: Option<HashMap<String, Value>>,
}Expand description
Multi-collection search response
Fields§
§results: Vec<IntelligentSearchResult>Search results
total_results: usizeTotal number of results found
duration_ms: u64Search duration in milliseconds
collections_searched: Vec<String>Collections searched
results_per_collection: Option<HashMap<String, usize>>Results per collection
metadata: Option<HashMap<String, Value>>Search metadata
Trait Implementations§
Source§impl Clone for MultiCollectionSearchResponse
impl Clone for MultiCollectionSearchResponse
Source§fn clone(&self) -> MultiCollectionSearchResponse
fn clone(&self) -> MultiCollectionSearchResponse
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<'de> Deserialize<'de> for MultiCollectionSearchResponse
impl<'de> Deserialize<'de> for MultiCollectionSearchResponse
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 MultiCollectionSearchResponse
impl RefUnwindSafe for MultiCollectionSearchResponse
impl Send for MultiCollectionSearchResponse
impl Sync for MultiCollectionSearchResponse
impl Unpin for MultiCollectionSearchResponse
impl UnwindSafe for MultiCollectionSearchResponse
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