pub struct PlanExecutionResponse {
pub plan_id: String,
pub status: String,
pub workflow_id: Option<String>,
pub result: Option<String>,
pub step_results: Vec<StepResult>,
pub error: Option<String>,
pub duration: String,
pub completed_steps: i32,
pub total_steps: i32,
}Fields§
§plan_id: String§status: String§workflow_id: Option<String>§result: Option<String>§step_results: Vec<StepResult>§error: Option<String>§duration: String§completed_steps: i32§total_steps: i32Trait Implementations§
Source§impl Clone for PlanExecutionResponse
impl Clone for PlanExecutionResponse
Source§fn clone(&self) -> PlanExecutionResponse
fn clone(&self) -> PlanExecutionResponse
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 PlanExecutionResponse
impl Debug for PlanExecutionResponse
Source§impl Default for PlanExecutionResponse
impl Default for PlanExecutionResponse
Source§fn default() -> PlanExecutionResponse
fn default() -> PlanExecutionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlanExecutionResponsewhere
PlanExecutionResponse: Default,
impl<'de> Deserialize<'de> for PlanExecutionResponsewhere
PlanExecutionResponse: Default,
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 PlanExecutionResponse
impl RefUnwindSafe for PlanExecutionResponse
impl Send for PlanExecutionResponse
impl Sync for PlanExecutionResponse
impl Unpin for PlanExecutionResponse
impl UnsafeUnpin for PlanExecutionResponse
impl UnwindSafe for PlanExecutionResponse
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