pub struct ExecutionResult {Show 13 fields
pub execution_id: String,
pub query_id: Option<i64>,
pub state: ExecutionState,
pub is_execution_finished: bool,
pub submitted_at: Option<String>,
pub execution_started_at: Option<String>,
pub execution_ended_at: Option<String>,
pub cancelled_at: Option<String>,
pub expires_at: Option<String>,
pub error: Option<QueryResultError>,
pub result: Option<QueryResultData>,
pub next_offset: Option<i64>,
pub next_uri: Option<String>,
}Expand description
Execution result response
Fields§
§execution_id: StringExecution ID
query_id: Option<i64>Query ID
state: ExecutionStateCurrent state
is_execution_finished: boolWhether execution is finished
submitted_at: Option<String>Timestamp when submitted
execution_started_at: Option<String>Timestamp when execution started
execution_ended_at: Option<String>Timestamp when execution ended
cancelled_at: Option<String>Timestamp when cancelled
expires_at: Option<String>Timestamp when results expire
error: Option<QueryResultError>Error information
result: Option<QueryResultData>Query result data
next_offset: Option<i64>Next page offset
next_uri: Option<String>Next page URI
Trait Implementations§
Source§impl Clone for ExecutionResult
impl Clone for ExecutionResult
Source§fn clone(&self) -> ExecutionResult
fn clone(&self) -> ExecutionResult
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 ExecutionResult
impl Debug for ExecutionResult
Source§impl<'de> Deserialize<'de> for ExecutionResult
impl<'de> Deserialize<'de> for ExecutionResult
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 ExecutionResult
impl RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl UnwindSafe for ExecutionResult
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