pub struct TurnEventStats {
pub filtered_early: usize,
pub post_idle_drained: usize,
pub inbound_dropped: usize,
}Expand description
Tracks per-turn stream filtering counters.
Fields§
§filtered_early: usizeChunks dropped by early stream filtering.
post_idle_drained: usizeEvents drained after idle status.
inbound_dropped: usizeInbound frames dropped under queue pressure.
Implementations§
Trait Implementations§
Source§impl Clone for TurnEventStats
impl Clone for TurnEventStats
Source§fn clone(&self) -> TurnEventStats
fn clone(&self) -> TurnEventStats
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 TurnEventStats
Source§impl Debug for TurnEventStats
impl Debug for TurnEventStats
Source§impl Default for TurnEventStats
impl Default for TurnEventStats
Source§fn default() -> TurnEventStats
fn default() -> TurnEventStats
Returns the “default value” for a type. Read more
impl Eq for TurnEventStats
Source§impl PartialEq for TurnEventStats
impl PartialEq for TurnEventStats
impl StructuralPartialEq for TurnEventStats
Auto Trait Implementations§
impl Freeze for TurnEventStats
impl RefUnwindSafe for TurnEventStats
impl Send for TurnEventStats
impl Sync for TurnEventStats
impl Unpin for TurnEventStats
impl UnsafeUnpin for TurnEventStats
impl UnwindSafe for TurnEventStats
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