pub struct Stats {
pub outstanding: usize,
pub cached_buffers: usize,
}Expand description
Usage statistics.
Fields§
§outstanding: usizeNumber of outstanding batches.
cached_buffers: usizeNumber of cached buffers (not used by outstanding batches).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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