pub struct NetQueueStats {
pub irq: u64,
pub schedule: u64,
pub missed: u64,
pub poll_batches: u64,
pub budget_exhaustion: u64,
pub spurious: u64,
pub probe_deferred: u64,
pub rearm_race: u64,
pub owner_cpu: usize,
pub last_irq_cpu: Option<usize>,
pub last_poll_cpu: Option<usize>,
pub irq_to_poll_remote_wake: u64,
}Expand description
Observable queue statistics used by SMP contract tests.
Fields§
§irq: u64§schedule: u64§missed: u64§poll_batches: u64§budget_exhaustion: u64§spurious: u64§probe_deferred: u64§rearm_race: u64§owner_cpu: usize§last_irq_cpu: Option<usize>§last_poll_cpu: Option<usize>§irq_to_poll_remote_wake: u64Trait Implementations§
Source§impl Clone for NetQueueStats
impl Clone for NetQueueStats
Source§fn clone(&self) -> NetQueueStats
fn clone(&self) -> NetQueueStats
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 NetQueueStats
Source§impl Debug for NetQueueStats
impl Debug for NetQueueStats
impl Eq for NetQueueStats
Source§impl PartialEq for NetQueueStats
impl PartialEq for NetQueueStats
impl StructuralPartialEq for NetQueueStats
Auto Trait Implementations§
impl Freeze for NetQueueStats
impl RefUnwindSafe for NetQueueStats
impl Send for NetQueueStats
impl Sync for NetQueueStats
impl Unpin for NetQueueStats
impl UnsafeUnpin for NetQueueStats
impl UnwindSafe for NetQueueStats
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DmaPod for Twhere
T: Copy,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.