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