pub struct LongTermStats {
pub size: usize,
pub avg_salience: f32,
pub min_salience: f32,
pub max_salience: f32,
}Expand description
Long-term store statistics
Fields§
§size: usizeNumber of patterns
avg_salience: f32Average salience
min_salience: f32Minimum salience
max_salience: f32Maximum salience
Trait Implementations§
Source§impl Clone for LongTermStats
impl Clone for LongTermStats
Source§fn clone(&self) -> LongTermStats
fn clone(&self) -> LongTermStats
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 moreAuto Trait Implementations§
impl Freeze for LongTermStats
impl RefUnwindSafe for LongTermStats
impl Send for LongTermStats
impl Sync for LongTermStats
impl Unpin for LongTermStats
impl UnwindSafe for LongTermStats
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