pub struct HebbianStats {
pub block_count: usize,
pub active_blocks: usize,
pub total_activations: u64,
pub hot_blocks: usize,
pub coactivation_pairs: usize,
pub fingerprint_count: usize,
pub drifted_blocks: usize,
}Fields§
§block_count: usize§active_blocks: usize§total_activations: u64§hot_blocks: usize§coactivation_pairs: usize§fingerprint_count: usize§drifted_blocks: usizeAuto Trait Implementations§
impl Freeze for HebbianStats
impl RefUnwindSafe for HebbianStats
impl Send for HebbianStats
impl Sync for HebbianStats
impl Unpin for HebbianStats
impl UnsafeUnpin for HebbianStats
impl UnwindSafe for HebbianStats
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