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