pub struct BarrierTransportStats {
pub notifications_sent: usize,
pub clients_notified: usize,
pub bytes_sent: usize,
}Expand description
Runtime barrier notification transport statistics.
Fields§
§notifications_sent: usizeBarrier frames encoded and submitted to client transport.
clients_notified: usizeClient targets submitted to transport.
bytes_sent: usizeEncoded bytes submitted to transport.
Trait Implementations§
Source§impl Clone for BarrierTransportStats
impl Clone for BarrierTransportStats
Source§fn clone(&self) -> BarrierTransportStats
fn clone(&self) -> BarrierTransportStats
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 BarrierTransportStats
Source§impl Debug for BarrierTransportStats
impl Debug for BarrierTransportStats
Source§impl Default for BarrierTransportStats
impl Default for BarrierTransportStats
Source§fn default() -> BarrierTransportStats
fn default() -> BarrierTransportStats
Returns the “default value” for a type. Read more
impl Eq for BarrierTransportStats
Source§impl PartialEq for BarrierTransportStats
impl PartialEq for BarrierTransportStats
impl StructuralPartialEq for BarrierTransportStats
Auto Trait Implementations§
impl Freeze for BarrierTransportStats
impl RefUnwindSafe for BarrierTransportStats
impl Send for BarrierTransportStats
impl Sync for BarrierTransportStats
impl Unpin for BarrierTransportStats
impl UnsafeUnpin for BarrierTransportStats
impl UnwindSafe for BarrierTransportStats
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