pub struct MissionHandoffReport {
pub mission_id: Symbol,
pub radar: RadarReport,
pub decomposition: Decomposition,
pub reflection: Reflection,
pub confidence: f64,
pub evidence: DevCassette,
}Expand description
Deterministic report from one fake/cassette mission handoff.
Fields§
§mission_id: SymbolIdentifier of the mission this report covers.
radar: RadarReportRanked memory hints retrieved for the mission.
decomposition: DecompositionPlanned subtasks and their produced outputs.
reflection: ReflectionReviewer reflection over the final output.
confidence: f64Bayesian-updated confidence in the handoff, in [0, 1].
evidence: DevCassetteRecorded cassette of mission evidence events.
Trait Implementations§
Source§impl Clone for MissionHandoffReport
impl Clone for MissionHandoffReport
Source§fn clone(&self) -> MissionHandoffReport
fn clone(&self) -> MissionHandoffReport
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 MissionHandoffReport
impl Debug for MissionHandoffReport
Source§impl PartialEq for MissionHandoffReport
impl PartialEq for MissionHandoffReport
Source§fn eq(&self, other: &MissionHandoffReport) -> bool
fn eq(&self, other: &MissionHandoffReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MissionHandoffReport
Auto Trait Implementations§
impl Freeze for MissionHandoffReport
impl RefUnwindSafe for MissionHandoffReport
impl Send for MissionHandoffReport
impl Sync for MissionHandoffReport
impl Unpin for MissionHandoffReport
impl UnsafeUnpin for MissionHandoffReport
impl UnwindSafe for MissionHandoffReport
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