pub struct WorkflowPlan<Schedule = Value, Step = Value> {Show 16 fields
pub plan_id: String,
pub planner_version: String,
pub plan_source: String,
pub original_prompt: String,
pub normalized_prompt: String,
pub confidence: String,
pub title: String,
pub description: Option<String>,
pub schedule: Schedule,
pub execution_target: String,
pub workspace_root: String,
pub steps: Vec<Step>,
pub requires_integrations: Vec<String>,
pub allowed_mcp_servers: Vec<String>,
pub operator_preferences: Option<Value>,
pub save_options: Value,
}Fields§
§plan_id: String§planner_version: String§plan_source: String§original_prompt: String§normalized_prompt: String§confidence: String§title: String§description: Option<String>§schedule: Schedule§execution_target: String§workspace_root: String§steps: Vec<Step>§requires_integrations: Vec<String>§allowed_mcp_servers: Vec<String>§operator_preferences: Option<Value>§save_options: ValueTrait Implementations§
Source§impl<Schedule: Clone, Step: Clone> Clone for WorkflowPlan<Schedule, Step>
impl<Schedule: Clone, Step: Clone> Clone for WorkflowPlan<Schedule, Step>
Source§fn clone(&self) -> WorkflowPlan<Schedule, Step>
fn clone(&self) -> WorkflowPlan<Schedule, Step>
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<'de, Schedule, Step> Deserialize<'de> for WorkflowPlan<Schedule, Step>
impl<'de, Schedule, Step> Deserialize<'de> for WorkflowPlan<Schedule, Step>
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<Schedule, Step> Freeze for WorkflowPlan<Schedule, Step>where
Schedule: Freeze,
impl<Schedule, Step> RefUnwindSafe for WorkflowPlan<Schedule, Step>where
Schedule: RefUnwindSafe,
Step: RefUnwindSafe,
impl<Schedule, Step> Send for WorkflowPlan<Schedule, Step>
impl<Schedule, Step> Sync for WorkflowPlan<Schedule, Step>
impl<Schedule, Step> Unpin for WorkflowPlan<Schedule, Step>
impl<Schedule, Step> UnsafeUnpin for WorkflowPlan<Schedule, Step>where
Schedule: UnsafeUnpin,
impl<Schedule, Step> UnwindSafe for WorkflowPlan<Schedule, Step>where
Schedule: UnwindSafe,
Step: 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