pub struct ProvenanceStats {
pub total_records: usize,
pub unique_tensors: usize,
pub fact_count: usize,
pub rule_fired_count: usize,
pub avg_confidence: f64,
}Expand description
High-level statistics across the entire TensorProvenanceTracker.
Fields§
§total_records: usizeTotal number of provenance records stored.
unique_tensors: usizeNumber of distinct tensor IDs that have at least one record.
fact_count: usizeNumber of records whose kind is ProvenanceKind::FactAssertion.
rule_fired_count: usizeNumber of records whose kind is ProvenanceKind::RuleFired.
avg_confidence: f64Arithmetic mean of confidence across all records (0.0 if no records).
Trait Implementations§
Source§impl Clone for ProvenanceStats
impl Clone for ProvenanceStats
Source§fn clone(&self) -> ProvenanceStats
fn clone(&self) -> ProvenanceStats
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 ProvenanceStats
impl RefUnwindSafe for ProvenanceStats
impl Send for ProvenanceStats
impl Sync for ProvenanceStats
impl Unpin for ProvenanceStats
impl UnsafeUnpin for ProvenanceStats
impl UnwindSafe for ProvenanceStats
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more