pub struct IndividualMemoryStats {
pub instant: usize,
pub session: usize,
pub episodic: usize,
pub semantic: usize,
pub total: usize,
}Fields§
§instant: usize§session: usize§episodic: usize§semantic: usize§total: usizeTrait Implementations§
Source§impl Clone for IndividualMemoryStats
impl Clone for IndividualMemoryStats
Source§fn clone(&self) -> IndividualMemoryStats
fn clone(&self) -> IndividualMemoryStats
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 IndividualMemoryStats
impl Debug for IndividualMemoryStats
Source§impl<'de> Deserialize<'de> for IndividualMemoryStats
impl<'de> Deserialize<'de> for IndividualMemoryStats
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 IndividualMemoryStats
impl RefUnwindSafe for IndividualMemoryStats
impl Send for IndividualMemoryStats
impl Sync for IndividualMemoryStats
impl Unpin for IndividualMemoryStats
impl UnwindSafe for IndividualMemoryStats
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