pub struct DogfoodContextJudgment {
pub recall: Option<f64>,
pub noise: Option<f64>,
pub edge_recall: Option<f64>,
pub missing: Vec<String>,
pub leaked: Vec<String>,
pub missing_edges: Vec<ContextEdgeExpectation>,
}Fields§
§recall: Option<f64>§noise: Option<f64>§edge_recall: Option<f64>§missing: Vec<String>§leaked: Vec<String>§missing_edges: Vec<ContextEdgeExpectation>Trait Implementations§
Source§impl Clone for DogfoodContextJudgment
impl Clone for DogfoodContextJudgment
Source§fn clone(&self) -> DogfoodContextJudgment
fn clone(&self) -> DogfoodContextJudgment
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 moreAuto Trait Implementations§
impl Freeze for DogfoodContextJudgment
impl RefUnwindSafe for DogfoodContextJudgment
impl Send for DogfoodContextJudgment
impl Sync for DogfoodContextJudgment
impl Unpin for DogfoodContextJudgment
impl UnsafeUnpin for DogfoodContextJudgment
impl UnwindSafe for DogfoodContextJudgment
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