pub struct DryRunStep {
pub name: String,
pub command: String,
pub provider: Option<String>,
pub model: Option<String>,
pub failure: String,
pub depends_on: Vec<String>,
pub condition: DryRunCondition,
pub saves: Vec<DryRunSave>,
pub prompt: String,
pub system_prompt: Option<String>,
pub blocks: DryRunBlocks,
pub agent_config: AgentConfig,
}Fields§
§name: String§command: String§provider: Option<String>§model: Option<String>§failure: String§depends_on: Vec<String>§condition: DryRunCondition§saves: Vec<DryRunSave>§prompt: String§system_prompt: Option<String>§blocks: DryRunBlocks§agent_config: AgentConfigSnapshot of the AgentBuilder configuration that would drive this step at run time. Mirrors every builder knob (provider, model, system prompt, root, add_dirs, env, files, auto_approve, json, output format, max_turns, timeout, session metadata, …) plus any command-specific params (review/plan/pipe/collect/summary).
Trait Implementations§
Source§impl Clone for DryRunStep
impl Clone for DryRunStep
Source§fn clone(&self) -> DryRunStep
fn clone(&self) -> DryRunStep
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 DryRunStep
impl Debug for DryRunStep
Auto Trait Implementations§
impl Freeze for DryRunStep
impl RefUnwindSafe for DryRunStep
impl Send for DryRunStep
impl Sync for DryRunStep
impl Unpin for DryRunStep
impl UnsafeUnpin for DryRunStep
impl UnwindSafe for DryRunStep
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