pub struct LastDecayCycleStats {
pub namespaces_processed: usize,
pub memories_processed: usize,
pub memories_decayed: usize,
pub memories_deleted: usize,
}Expand description
DECAY-2: Stats from a single decay cycle
Fields§
§namespaces_processed: usize§memories_processed: usize§memories_decayed: usize§memories_deleted: usizeTrait Implementations§
Source§impl Clone for LastDecayCycleStats
impl Clone for LastDecayCycleStats
Source§fn clone(&self) -> LastDecayCycleStats
fn clone(&self) -> LastDecayCycleStats
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 LastDecayCycleStats
impl Debug for LastDecayCycleStats
Source§impl<'de> Deserialize<'de> for LastDecayCycleStats
impl<'de> Deserialize<'de> for LastDecayCycleStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LastDecayCycleStats
impl RefUnwindSafe for LastDecayCycleStats
impl Send for LastDecayCycleStats
impl Sync for LastDecayCycleStats
impl Unpin for LastDecayCycleStats
impl UnsafeUnpin for LastDecayCycleStats
impl UnwindSafe for LastDecayCycleStats
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