pub struct ScanOnceQueueStats {
pub size: usize,
pub num_used: usize,
pub max_used: usize,
pub num_overflow: u64,
}Expand description
The scanOnce ring as scanOnceQueueShow prints it — C
scanOnceQueueStats (dbScan.h).
Fields§
§size: usizeRing capacity — C stats.size.
num_used: usizeEntries queued right now — C stats.numUsed.
max_used: usizeDeepest the ring has been since the last reset — C stats.maxUsed.
num_overflow: u64Lifetime overflow count — C stats.numOverflow (onceQOverruns).
Trait Implementations§
Source§impl Clone for ScanOnceQueueStats
impl Clone for ScanOnceQueueStats
Source§fn clone(&self) -> ScanOnceQueueStats
fn clone(&self) -> ScanOnceQueueStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScanOnceQueueStats
Source§impl Debug for ScanOnceQueueStats
impl Debug for ScanOnceQueueStats
impl Eq for ScanOnceQueueStats
Source§impl PartialEq for ScanOnceQueueStats
impl PartialEq for ScanOnceQueueStats
impl StructuralPartialEq for ScanOnceQueueStats
Auto Trait Implementations§
impl Freeze for ScanOnceQueueStats
impl RefUnwindSafe for ScanOnceQueueStats
impl Send for ScanOnceQueueStats
impl Sync for ScanOnceQueueStats
impl Unpin for ScanOnceQueueStats
impl UnsafeUnpin for ScanOnceQueueStats
impl UnwindSafe for ScanOnceQueueStats
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