pub struct ExtractionStat {
pub provider: String,
pub model: String,
pub total: u64,
pub rejected: u64,
}Expand description
Extraction-accuracy tally for one (provider, model) pair within a slice.
total counts every semantic row the pair produced (active or retired, any
reason); rejected counts only those retired as RetirementReason::Rejected
— a wrong extraction the user corrected. Rows retired as
RetirementReason::Stale (the source changed) and superseded rows (a newer
fact won) are in total but never in rejected: they are not model errors.
See Self::accuracy for the derived ratio.
Fields§
§provider: String§model: String§total: u64§rejected: u64Implementations§
Trait Implementations§
Source§impl Clone for ExtractionStat
impl Clone for ExtractionStat
Source§fn clone(&self) -> ExtractionStat
fn clone(&self) -> ExtractionStat
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 ExtractionStat
impl Debug for ExtractionStat
impl Eq for ExtractionStat
Source§impl PartialEq for ExtractionStat
impl PartialEq for ExtractionStat
Source§fn eq(&self, other: &ExtractionStat) -> bool
fn eq(&self, other: &ExtractionStat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExtractionStat
Auto Trait Implementations§
impl Freeze for ExtractionStat
impl RefUnwindSafe for ExtractionStat
impl Send for ExtractionStat
impl Sync for ExtractionStat
impl Unpin for ExtractionStat
impl UnsafeUnpin for ExtractionStat
impl UnwindSafe for ExtractionStat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request