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 Clone for BatchQueryResponse
impl Clone for BatchQueryResponse
Source§fn clone(&self) -> BatchQueryResponse
fn clone(&self) -> BatchQueryResponse
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 BatchQueryResponse
impl Debug for BatchQueryResponse
Source§impl<'de> Deserialize<'de> for BatchQueryResponse
impl<'de> Deserialize<'de> for BatchQueryResponse
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 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