pub struct PlanExecutionResult {
pub plan_id: Uuid,
pub status: ExecutionStatus,
pub results: Vec<ExecutionResult>,
pub total_duration: Duration,
pub stats: ExecutionStats,
}Expand description
Result of executing a plan
Fields§
§plan_id: UuidPlan ID
status: ExecutionStatusOverall status
results: Vec<ExecutionResult>Results for each command
total_duration: DurationTotal duration
stats: ExecutionStatsStatistics
Trait Implementations§
Source§impl Clone for PlanExecutionResult
impl Clone for PlanExecutionResult
Source§fn clone(&self) -> PlanExecutionResult
fn clone(&self) -> PlanExecutionResult
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 PlanExecutionResult
impl Debug for PlanExecutionResult
Source§impl<'de> Deserialize<'de> for PlanExecutionResult
impl<'de> Deserialize<'de> for PlanExecutionResult
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 PlanExecutionResult
impl RefUnwindSafe for PlanExecutionResult
impl Send for PlanExecutionResult
impl Sync for PlanExecutionResult
impl Unpin for PlanExecutionResult
impl UnwindSafe for PlanExecutionResult
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