pub struct PollStats {
pub read: usize,
pub dropped: usize,
pub newest: u32,
}Fields§
§read: usizeNumber of items delivered to the hook.
dropped: usizeNumber of items skipped because the consumer lagged or slots were overwritten.
newest: u32Newest sequence observed while polling.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PollStats
impl RefUnwindSafe for PollStats
impl Send for PollStats
impl Sync for PollStats
impl Unpin for PollStats
impl UnwindSafe for PollStats
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