pub struct CommandQueueStats {
pub critical_queue_len: usize,
pub high_queue_len: usize,
pub normal_queue_len: usize,
pub low_queue_len: usize,
pub total_len: usize,
pub max_capacity: usize,
pub dropped_count: u64,
pub active_sessions: usize,
}Fields§
§critical_queue_len: usize§high_queue_len: usize§normal_queue_len: usize§low_queue_len: usize§total_len: usize§max_capacity: usize§dropped_count: u64§active_sessions: usizeTrait Implementations§
Source§impl Clone for CommandQueueStats
impl Clone for CommandQueueStats
impl Copy for CommandQueueStats
Source§impl Debug for CommandQueueStats
impl Debug for CommandQueueStats
Auto Trait Implementations§
impl Freeze for CommandQueueStats
impl RefUnwindSafe for CommandQueueStats
impl Send for CommandQueueStats
impl Sync for CommandQueueStats
impl Unpin for CommandQueueStats
impl UnsafeUnpin for CommandQueueStats
impl UnwindSafe for CommandQueueStats
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