pub struct TemporalStats {
pub short_term: ShortTermStats,
pub long_term: LongTermStats,
pub causal_graph: CausalGraphStats,
pub prefetch_cache_size: usize,
}Expand description
Temporal memory statistics
Fields§
§short_term: ShortTermStatsShort-term buffer stats
long_term: LongTermStatsLong-term store stats
causal_graph: CausalGraphStatsCausal graph stats
prefetch_cache_size: usizePrefetch cache size
Trait Implementations§
Source§impl Clone for TemporalStats
impl Clone for TemporalStats
Source§fn clone(&self) -> TemporalStats
fn clone(&self) -> TemporalStats
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 TemporalStats
impl RefUnwindSafe for TemporalStats
impl Send for TemporalStats
impl Sync for TemporalStats
impl Unpin for TemporalStats
impl UnwindSafe for TemporalStats
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