pub struct MemoStats {
pub hits: u64,
pub misses: u64,
pub features: usize,
pub audio: usize,
pub audio_bytes: usize,
}Expand description
Memo occupancy and hit accounting.
Fields§
§hits: u64Featurizations served from the memo.
misses: u64Featurizations that had to render.
features: usizeResident feature entries.
audio: usizeResident audition buffers.
audio_bytes: usizeBytes held by those audition buffers.
Trait Implementations§
impl Copy for MemoStats
impl Eq for MemoStats
impl StructuralPartialEq for MemoStats
Auto Trait Implementations§
impl Freeze for MemoStats
impl RefUnwindSafe for MemoStats
impl Send for MemoStats
impl Sync for MemoStats
impl Unpin for MemoStats
impl UnsafeUnpin for MemoStats
impl UnwindSafe for MemoStats
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