pub struct WorkflowPlanDraftRecord<Plan = Value> {
pub initial_plan: Plan,
pub current_plan: Plan,
pub plan_revision: u32,
pub conversation: WorkflowPlanConversation,
pub planner_diagnostics: Option<Value>,
pub last_success_materialization: Option<Value>,
}Fields§
§initial_plan: Plan§current_plan: Plan§plan_revision: u32§conversation: WorkflowPlanConversation§planner_diagnostics: Option<Value>§last_success_materialization: Option<Value>Trait Implementations§
Source§impl<Plan: Clone> Clone for WorkflowPlanDraftRecord<Plan>
impl<Plan: Clone> Clone for WorkflowPlanDraftRecord<Plan>
Source§fn clone(&self) -> WorkflowPlanDraftRecord<Plan>
fn clone(&self) -> WorkflowPlanDraftRecord<Plan>
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<Plan: Debug> Debug for WorkflowPlanDraftRecord<Plan>
impl<Plan: Debug> Debug for WorkflowPlanDraftRecord<Plan>
Source§impl<'de, Plan> Deserialize<'de> for WorkflowPlanDraftRecord<Plan>where
Plan: Deserialize<'de>,
impl<'de, Plan> Deserialize<'de> for WorkflowPlanDraftRecord<Plan>where
Plan: Deserialize<'de>,
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<Plan> Freeze for WorkflowPlanDraftRecord<Plan>where
Plan: Freeze,
impl<Plan> RefUnwindSafe for WorkflowPlanDraftRecord<Plan>where
Plan: RefUnwindSafe,
impl<Plan> Send for WorkflowPlanDraftRecord<Plan>where
Plan: Send,
impl<Plan> Sync for WorkflowPlanDraftRecord<Plan>where
Plan: Sync,
impl<Plan> Unpin for WorkflowPlanDraftRecord<Plan>where
Plan: Unpin,
impl<Plan> UnsafeUnpin for WorkflowPlanDraftRecord<Plan>where
Plan: UnsafeUnpin,
impl<Plan> UnwindSafe for WorkflowPlanDraftRecord<Plan>where
Plan: UnwindSafe,
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