pub struct SupportRefValidation {
pub accepted_refs: Vec<EntityRef>,
pub rejected_refs: Vec<EntityRef>,
}Expand description
Result of validating evaluator-cited support refs against available evidence.
Fields§
§accepted_refs: Vec<EntityRef>Cited refs that matched an available evidence item.
rejected_refs: Vec<EntityRef>Cited refs that were not available to the evaluator.
Trait Implementations§
Source§impl Clone for SupportRefValidation
impl Clone for SupportRefValidation
Source§fn clone(&self) -> SupportRefValidation
fn clone(&self) -> SupportRefValidation
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 SupportRefValidation
impl Debug for SupportRefValidation
Source§impl<'de> Deserialize<'de> for SupportRefValidation
impl<'de> Deserialize<'de> for SupportRefValidation
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
Source§impl PartialEq for SupportRefValidation
impl PartialEq for SupportRefValidation
Source§fn eq(&self, other: &SupportRefValidation) -> bool
fn eq(&self, other: &SupportRefValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SupportRefValidation
impl Serialize for SupportRefValidation
impl Eq for SupportRefValidation
impl StructuralPartialEq for SupportRefValidation
Auto Trait Implementations§
impl Freeze for SupportRefValidation
impl RefUnwindSafe for SupportRefValidation
impl Send for SupportRefValidation
impl Sync for SupportRefValidation
impl Unpin for SupportRefValidation
impl UnsafeUnpin for SupportRefValidation
impl UnwindSafe for SupportRefValidation
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