#[repr(C)]pub struct NetStats {
pub events_ingested: u64,
pub events_dropped: u64,
pub batches_dispatched: u64,
}Expand description
Stats for C consumers.
Fields§
§events_ingested: u64Total events ingested.
events_dropped: u64Events dropped due to backpressure.
batches_dispatched: u64Batches dispatched to the adapter.
Auto Trait Implementations§
impl Freeze for NetStats
impl RefUnwindSafe for NetStats
impl Send for NetStats
impl Sync for NetStats
impl Unpin for NetStats
impl UnsafeUnpin for NetStats
impl UnwindSafe for NetStats
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