pub struct AutopilotRun {Show 21 fields
pub schema_version: String,
pub run_id: String,
pub root: String,
pub target: Option<String>,
pub mode: RefactorApplyMode,
pub status: AutopilotStatus,
pub budget_seconds: Option<u64>,
pub max_passes: usize,
pub max_candidates_per_pass: usize,
pub quality_before: CodebaseQualitySummary,
pub quality_after: Option<CodebaseQualitySummary>,
pub evidence: EvidenceSummary,
pub measured_evidence: Option<EvidenceArtifactRef>,
pub execution_summary: AutopilotExecutionSummary,
pub passes: Vec<AutopilotPass>,
pub total_planned_candidates: usize,
pub total_executed_candidates: usize,
pub total_skipped_candidates: usize,
pub budget_exhausted: bool,
pub note: String,
pub artifact_path: Option<String>,
}Expand description
Plan-first refactor and autonomous orchestration records. Unstable before 1.0.
Fields§
§schema_version: String§run_id: String§root: String§target: Option<String>§mode: RefactorApplyMode§status: AutopilotStatus§budget_seconds: Option<u64>§max_passes: usize§max_candidates_per_pass: usize§quality_before: CodebaseQualitySummary§quality_after: Option<CodebaseQualitySummary>§evidence: EvidenceSummary§measured_evidence: Option<EvidenceArtifactRef>§execution_summary: AutopilotExecutionSummary§passes: Vec<AutopilotPass>§total_planned_candidates: usize§total_executed_candidates: usize§total_skipped_candidates: usize§budget_exhausted: bool§note: String§artifact_path: Option<String>Trait Implementations§
Source§impl Clone for AutopilotRun
impl Clone for AutopilotRun
Source§fn clone(&self) -> AutopilotRun
fn clone(&self) -> AutopilotRun
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 AutopilotRun
impl Debug for AutopilotRun
Source§impl<'de> Deserialize<'de> for AutopilotRun
impl<'de> Deserialize<'de> for AutopilotRun
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
Source§impl JsonSchema for AutopilotRun
impl JsonSchema for AutopilotRun
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for AutopilotRun
impl RefUnwindSafe for AutopilotRun
impl Send for AutopilotRun
impl Sync for AutopilotRun
impl Unpin for AutopilotRun
impl UnsafeUnpin for AutopilotRun
impl UnwindSafe for AutopilotRun
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