pub struct CryptoMetricsSnapshot {
pub submitted_jobs: u64,
pub completed_jobs: u64,
pub queue_depth: u32,
pub maximum_queue_depth: u32,
pub backpressure_deferrals: u64,
pub packet_verdicts_owed: u32,
}Fields§
§submitted_jobs: u64§completed_jobs: u64§queue_depth: u32§maximum_queue_depth: u32§backpressure_deferrals: u64§packet_verdicts_owed: u32Trait Implementations§
Source§impl Clone for CryptoMetricsSnapshot
impl Clone for CryptoMetricsSnapshot
Source§fn clone(&self) -> CryptoMetricsSnapshot
fn clone(&self) -> CryptoMetricsSnapshot
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 CryptoMetricsSnapshot
Source§impl Debug for CryptoMetricsSnapshot
impl Debug for CryptoMetricsSnapshot
Source§impl Default for CryptoMetricsSnapshot
impl Default for CryptoMetricsSnapshot
Source§fn default() -> CryptoMetricsSnapshot
fn default() -> CryptoMetricsSnapshot
Returns the “default value” for a type. Read more
impl Eq for CryptoMetricsSnapshot
Source§impl PartialEq for CryptoMetricsSnapshot
impl PartialEq for CryptoMetricsSnapshot
impl StructuralPartialEq for CryptoMetricsSnapshot
Auto Trait Implementations§
impl Freeze for CryptoMetricsSnapshot
impl RefUnwindSafe for CryptoMetricsSnapshot
impl Send for CryptoMetricsSnapshot
impl Sync for CryptoMetricsSnapshot
impl Unpin for CryptoMetricsSnapshot
impl UnsafeUnpin for CryptoMetricsSnapshot
impl UnwindSafe for CryptoMetricsSnapshot
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