Skip to main content

DogfoodCaseResult

Struct DogfoodCaseResult 

Source
pub struct DogfoodCaseResult {
Show 42 fields pub query: String, pub difficulty: String, pub expected_profile: Option<String>, pub profile: Option<String>, pub profile_ok: Option<bool>, pub route_top: Option<String>, pub expected_partition: Option<String>, pub route_partition: Option<String>, pub partition_ok: Option<bool>, pub route_rank: Option<usize>, pub route_ok: bool, pub expected_focus_route: Option<String>, pub expected_focus_routes: Vec<String>, pub focus_route: String, pub focus_route_ok: Option<bool>, pub route_relation_matches: Vec<RelationMatch>, pub route_relation_ok: Option<bool>, pub route_relation_expected: usize, pub route_relation_missing: usize, pub context_recall: Option<f64>, pub context_noise: Option<f64>, pub edge_recall: Option<f64>, pub receipt_coverage: f64, pub requires_code_ok: bool, pub requires_docs_ok: bool, pub workflow_valid: bool, pub workflow_bounded: bool, pub expected_operators_ok: bool, pub task_context_ok: bool, pub run_advancement_ok: bool, pub score: f64, pub passed: bool, pub pack_size: usize, pub node_count: usize, pub missing_context: Vec<String>, pub leaked_context: Vec<String>, pub missing_edges: Vec<ContextEdgeExpectation>, pub missing_route_relation_matches: Vec<RelationMatchExpectation>, pub missing_operators: Vec<String>, pub missing_task_context: Vec<String>, pub ready_after_context: Vec<String>, pub protocol: DogfoodProtocolComparison,
}
Expand description

Per-task dogfood trace across route, focus, brief decomposition, and readiness projection.

Fields§

§query: String§difficulty: String§expected_profile: Option<String>§profile: Option<String>§profile_ok: Option<bool>§route_top: Option<String>§expected_partition: Option<String>§route_partition: Option<String>§partition_ok: Option<bool>§route_rank: Option<usize>§route_ok: bool§expected_focus_route: Option<String>§expected_focus_routes: Vec<String>§focus_route: String§focus_route_ok: Option<bool>§route_relation_matches: Vec<RelationMatch>§route_relation_ok: Option<bool>§route_relation_expected: usize§route_relation_missing: usize§context_recall: Option<f64>§context_noise: Option<f64>§edge_recall: Option<f64>§receipt_coverage: f64§requires_code_ok: bool§requires_docs_ok: bool§workflow_valid: bool§workflow_bounded: bool§expected_operators_ok: bool§task_context_ok: bool§run_advancement_ok: bool§score: f64§passed: bool§pack_size: usize§node_count: usize§missing_context: Vec<String>§leaked_context: Vec<String>§missing_edges: Vec<ContextEdgeExpectation>§missing_route_relation_matches: Vec<RelationMatchExpectation>§missing_operators: Vec<String>§missing_task_context: Vec<String>§ready_after_context: Vec<String>§protocol: DogfoodProtocolComparison

Trait Implementations§

Source§

impl Clone for DogfoodCaseResult

Source§

fn clone(&self) -> DogfoodCaseResult

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DogfoodCaseResult

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for DogfoodCaseResult

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.