pub struct RecallEvaluationCaseReport {
pub name: String,
pub passed: bool,
pub ranked_record_ids: Vec<String>,
pub missing_expected_record_ids: Vec<String>,
pub present_disallowed_record_ids: Vec<String>,
pub missing_explanation_notes: Vec<String>,
}Fields§
§name: String§passed: bool§ranked_record_ids: Vec<String>§missing_expected_record_ids: Vec<String>§present_disallowed_record_ids: Vec<String>§missing_explanation_notes: Vec<String>Trait Implementations§
Source§impl Clone for RecallEvaluationCaseReport
impl Clone for RecallEvaluationCaseReport
Source§fn clone(&self) -> RecallEvaluationCaseReport
fn clone(&self) -> RecallEvaluationCaseReport
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 RecallEvaluationCaseReport
impl Debug for RecallEvaluationCaseReport
Source§impl<'de> Deserialize<'de> for RecallEvaluationCaseReport
impl<'de> Deserialize<'de> for RecallEvaluationCaseReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RecallEvaluationCaseReport
Source§impl PartialEq for RecallEvaluationCaseReport
impl PartialEq for RecallEvaluationCaseReport
Source§fn eq(&self, other: &RecallEvaluationCaseReport) -> bool
fn eq(&self, other: &RecallEvaluationCaseReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecallEvaluationCaseReport
Auto Trait Implementations§
impl Freeze for RecallEvaluationCaseReport
impl RefUnwindSafe for RecallEvaluationCaseReport
impl Send for RecallEvaluationCaseReport
impl Sync for RecallEvaluationCaseReport
impl Unpin for RecallEvaluationCaseReport
impl UnsafeUnpin for RecallEvaluationCaseReport
impl UnwindSafe for RecallEvaluationCaseReport
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