pub struct TripleStats {
pub total: usize,
pub mean_weight: f64,
pub median_weight: f64,
pub max_weight: f64,
pub min_weight: f64,
pub mean_co_activations: f64,
}Expand description
Statistics about exported triples.
Fields§
§total: usize§mean_weight: f64§median_weight: f64§max_weight: f64§min_weight: f64§mean_co_activations: f64Trait Implementations§
Source§impl Clone for TripleStats
impl Clone for TripleStats
Source§fn clone(&self) -> TripleStats
fn clone(&self) -> TripleStats
Returns a duplicate of the value. Read more
1.0.0 · 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 TripleStats
impl Debug for TripleStats
Auto Trait Implementations§
impl Freeze for TripleStats
impl RefUnwindSafe for TripleStats
impl Send for TripleStats
impl Sync for TripleStats
impl Unpin for TripleStats
impl UnwindSafe for TripleStats
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