pub struct PendingQueueStats {
pub total_updates: usize,
pub unique_pdas: usize,
pub oldest_age_seconds: i64,
pub largest_pda_queue_size: usize,
pub estimated_memory_bytes: usize,
}Fields§
§total_updates: usize§unique_pdas: usize§oldest_age_seconds: i64§largest_pda_queue_size: usize§estimated_memory_bytes: usizeTrait Implementations§
Source§impl Clone for PendingQueueStats
impl Clone for PendingQueueStats
Source§fn clone(&self) -> PendingQueueStats
fn clone(&self) -> PendingQueueStats
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 moreAuto Trait Implementations§
impl Freeze for PendingQueueStats
impl RefUnwindSafe for PendingQueueStats
impl Send for PendingQueueStats
impl Sync for PendingQueueStats
impl Unpin for PendingQueueStats
impl UnwindSafe for PendingQueueStats
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