pub struct AutopilotConfig {
pub target: Option<PathBuf>,
pub policy_path: Option<PathBuf>,
pub behavior_spec_path: Option<PathBuf>,
pub apply: bool,
pub max_files: usize,
pub max_passes: usize,
pub max_candidates: usize,
pub validation_timeout: Duration,
pub allow_public_api_impact: bool,
pub max_tier: RecipeTier,
pub min_evidence: EvidenceGrade,
pub budget: Option<Duration>,
}Expand description
Plan-first refactor and autonomous orchestration records. Unstable before 1.0.
Fields§
§target: Option<PathBuf>§policy_path: Option<PathBuf>§behavior_spec_path: Option<PathBuf>§apply: bool§max_files: usize§max_passes: usize§max_candidates: usize§validation_timeout: Duration§allow_public_api_impact: bool§max_tier: RecipeTier§min_evidence: EvidenceGrade§budget: Option<Duration>Trait Implementations§
Source§impl Clone for AutopilotConfig
impl Clone for AutopilotConfig
Source§fn clone(&self) -> AutopilotConfig
fn clone(&self) -> AutopilotConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AutopilotConfig
impl Debug for AutopilotConfig
Auto Trait Implementations§
impl Freeze for AutopilotConfig
impl RefUnwindSafe for AutopilotConfig
impl Send for AutopilotConfig
impl Sync for AutopilotConfig
impl Unpin for AutopilotConfig
impl UnsafeUnpin for AutopilotConfig
impl UnwindSafe for AutopilotConfig
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