pub struct BatchQueryResponse {
pub results: Vec<BatchQueryResult>,
pub total_latency_ms: f64,
pub query_count: usize,
}Expand description
Batch query response
Fields§
§results: Vec<BatchQueryResult>Results for each query in the batch
total_latency_ms: f64Total execution time in milliseconds
query_count: usizeNumber of queries executed
Trait Implementations§
Source§impl Debug for BatchQueryResponse
impl Debug for BatchQueryResponse
Auto Trait Implementations§
impl Freeze for BatchQueryResponse
impl RefUnwindSafe for BatchQueryResponse
impl Send for BatchQueryResponse
impl Sync for BatchQueryResponse
impl Unpin for BatchQueryResponse
impl UnsafeUnpin for BatchQueryResponse
impl UnwindSafe for BatchQueryResponse
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