pub struct TransferMetrics {
pub shared_terms: usize,
pub total_terms: usize,
pub shared_term_ratio: f64,
pub avg_vocabulary_size: f64,
pub total_exports: usize,
pub total_integrations: usize,
}Expand description
Transfer effect metrics — proves vocabulary sharing works.
Fields§
Number of unique terms known by 2+ agents.
total_terms: usizeTotal unique terms across all agents.
Ratio of shared to total terms.
avg_vocabulary_size: f64Average vocabulary size per agent.
total_exports: usizeTotal export events.
total_integrations: usizeTotal integration events.
Trait Implementations§
Source§impl Clone for TransferMetrics
impl Clone for TransferMetrics
Source§fn clone(&self) -> TransferMetrics
fn clone(&self) -> TransferMetrics
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 TransferMetrics
impl Debug for TransferMetrics
Auto Trait Implementations§
impl Freeze for TransferMetrics
impl RefUnwindSafe for TransferMetrics
impl Send for TransferMetrics
impl Sync for TransferMetrics
impl Unpin for TransferMetrics
impl UnwindSafe for TransferMetrics
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