pub struct WorkflowCaseResult {Show 17 fields
pub query: String,
pub expected_profile: Option<String>,
pub profile: Option<String>,
pub profile_ok: Option<bool>,
pub valid: bool,
pub bounded: bool,
pub required_chain: bool,
pub initial_ready_context_only: bool,
pub inspection_recall: Option<f64>,
pub required_check_recall: Option<f64>,
pub risk_hint_recall: Option<f64>,
pub node_count: usize,
pub ready: Vec<String>,
pub missing_inspections: Vec<String>,
pub missing_required_checks: Vec<String>,
pub missing_risk_hints: Vec<String>,
pub error: Option<String>,
}Expand description
Per-case brief/decomposition outcome.
Fields§
§query: String§expected_profile: Option<String>§profile: Option<String>§profile_ok: Option<bool>§valid: bool§bounded: bool§required_chain: bool§initial_ready_context_only: bool§inspection_recall: Option<f64>Fraction of context_must ids represented by inspection nodes.
required_check_recall: Option<f64>Fraction of expected_required_checks represented by brief/decomposition nodes.
risk_hint_recall: Option<f64>Fraction of expected_risk_hints represented by medium/high-risk brief/decomposition nodes.
node_count: usize§ready: Vec<String>§missing_inspections: Vec<String>§missing_required_checks: Vec<String>§missing_risk_hints: Vec<String>§error: Option<String>Trait Implementations§
Source§impl Clone for WorkflowCaseResult
impl Clone for WorkflowCaseResult
Source§fn clone(&self) -> WorkflowCaseResult
fn clone(&self) -> WorkflowCaseResult
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 WorkflowCaseResult
impl Debug for WorkflowCaseResult
Auto Trait Implementations§
impl Freeze for WorkflowCaseResult
impl RefUnwindSafe for WorkflowCaseResult
impl Send for WorkflowCaseResult
impl Sync for WorkflowCaseResult
impl Unpin for WorkflowCaseResult
impl UnsafeUnpin for WorkflowCaseResult
impl UnwindSafe for WorkflowCaseResult
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