pub struct RunQueryResponse {
pub transaction: Option<String>,
pub document: Option<Document>,
pub read_time: Option<String>,
pub skipped_results: Option<i32>,
}Expand description
The response for runQuery.
Fields§
§transaction: Option<String>The transaction that was started or is being used.
document: Option<Document>A query result, not set when reporting partial progress.
read_time: Option<String>The time at which the document was read.
skipped_results: Option<i32>The number of results that have been skipped due to an offset between the last response and the current response.
Trait Implementations§
Source§impl Clone for RunQueryResponse
impl Clone for RunQueryResponse
Source§fn clone(&self) -> RunQueryResponse
fn clone(&self) -> RunQueryResponse
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 RunQueryResponse
impl Debug for RunQueryResponse
Source§impl<'de> Deserialize<'de> for RunQueryResponse
impl<'de> Deserialize<'de> for RunQueryResponse
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 RunQueryResponse
impl RefUnwindSafe for RunQueryResponse
impl Send for RunQueryResponse
impl Sync for RunQueryResponse
impl Unpin for RunQueryResponse
impl UnwindSafe for RunQueryResponse
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