pub struct DogfoodProtocolInput<'a> {
pub case: &'a GoldenCase,
pub hits: &'a [Hit],
pub route_ok: bool,
pub context_order: &'a [String],
pub edges: &'a [Edge],
pub context_judgment: &'a DogfoodContextJudgment,
pub receipt_coverage: f64,
pub route_trust_tier: Option<String>,
pub route_trust_verdict: Option<String>,
pub limit: usize,
pub depth: usize,
pub width: usize,
}Expand description
Inputs needed to compare legacy flat protocol with compact EKF protocol.
Fields§
§case: &'a GoldenCase§hits: &'a [Hit]§route_ok: bool§context_order: &'a [String]§edges: &'a [Edge]§context_judgment: &'a DogfoodContextJudgment§receipt_coverage: f64§route_trust_tier: Option<String>§route_trust_verdict: Option<String>§limit: usize§depth: usize§width: usizeAuto Trait Implementations§
impl<'a> Freeze for DogfoodProtocolInput<'a>
impl<'a> RefUnwindSafe for DogfoodProtocolInput<'a>
impl<'a> Send for DogfoodProtocolInput<'a>
impl<'a> Sync for DogfoodProtocolInput<'a>
impl<'a> Unpin for DogfoodProtocolInput<'a>
impl<'a> UnsafeUnpin for DogfoodProtocolInput<'a>
impl<'a> UnwindSafe for DogfoodProtocolInput<'a>
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