pub struct QueryExecutionResult {
pub query_text: Option<String>,
pub statements_in_batch: Option<i64>,
pub source_result: Option<ExecutionStatistics>,
pub target_result: Option<ExecutionStatistics>,
}
Expand description
Describes query analysis results for execution in source and target
Fields§
§query_text: Option<String>
Query text retrieved from the source server
statements_in_batch: Option<i64>
Total no. of statements in the batch
source_result: Option<ExecutionStatistics>
Description about the errors happen while performing migration validation
target_result: Option<ExecutionStatistics>
Description about the errors happen while performing migration validation
Implementations§
Trait Implementations§
Source§impl Clone for QueryExecutionResult
impl Clone for QueryExecutionResult
Source§fn clone(&self) -> QueryExecutionResult
fn clone(&self) -> QueryExecutionResult
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 QueryExecutionResult
impl Debug for QueryExecutionResult
Source§impl Default for QueryExecutionResult
impl Default for QueryExecutionResult
Source§fn default() -> QueryExecutionResult
fn default() -> QueryExecutionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryExecutionResult
impl<'de> Deserialize<'de> for QueryExecutionResult
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
Source§impl PartialEq for QueryExecutionResult
impl PartialEq for QueryExecutionResult
Source§impl Serialize for QueryExecutionResult
impl Serialize for QueryExecutionResult
impl StructuralPartialEq for QueryExecutionResult
Auto Trait Implementations§
impl Freeze for QueryExecutionResult
impl RefUnwindSafe for QueryExecutionResult
impl Send for QueryExecutionResult
impl Sync for QueryExecutionResult
impl Unpin for QueryExecutionResult
impl UnwindSafe for QueryExecutionResult
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