pub struct DreamStats {
pub total_cycles: usize,
pub last_dream_ms: u64,
pub total_pruned_pairs: u64,
pub total_pruned_activations: u64,
pub total_strengthened: u64,
pub total_replayed: u64,
}Fields§
§total_cycles: usize§last_dream_ms: u64§total_pruned_pairs: u64§total_pruned_activations: u64§total_strengthened: u64§total_replayed: u64Auto Trait Implementations§
impl Freeze for DreamStats
impl RefUnwindSafe for DreamStats
impl Send for DreamStats
impl Sync for DreamStats
impl Unpin for DreamStats
impl UnsafeUnpin for DreamStats
impl UnwindSafe for DreamStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more