pub struct BatchQueryResult {
pub id: Option<String>,
pub results: Vec<SearchResult>,
pub latency_ms: f64,
pub error: Option<String>,
}Expand description
Results for a single query within a batch
Fields§
§id: Option<String>The query identifier (if provided in request)
results: Vec<SearchResult>Query results (empty if an error occurred)
latency_ms: f64Query execution time in milliseconds
error: Option<String>Error message if this individual query failed
Trait Implementations§
Source§impl Debug for BatchQueryResult
impl Debug for BatchQueryResult
Auto Trait Implementations§
impl Freeze for BatchQueryResult
impl RefUnwindSafe for BatchQueryResult
impl Send for BatchQueryResult
impl Sync for BatchQueryResult
impl Unpin for BatchQueryResult
impl UnsafeUnpin for BatchQueryResult
impl UnwindSafe for BatchQueryResult
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