pub struct StationEventTransportStats {
pub events_sent: usize,
pub bytes_sent: usize,
pub packets_received: usize,
pub bytes_received: usize,
pub events_routed: usize,
}Expand description
Statistics for station event transport bridging.
Fields§
§events_sent: usizeEvents encoded and submitted to station transport.
bytes_sent: usizeBytes submitted to station transport.
packets_received: usizePackets received from station transport.
bytes_received: usizeBytes received from station transport.
events_routed: usizeEvents decoded and accepted by the target router.
Trait Implementations§
Source§impl Clone for StationEventTransportStats
impl Clone for StationEventTransportStats
Source§fn clone(&self) -> StationEventTransportStats
fn clone(&self) -> StationEventTransportStats
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 StationEventTransportStats
Source§impl Debug for StationEventTransportStats
impl Debug for StationEventTransportStats
Source§impl Default for StationEventTransportStats
impl Default for StationEventTransportStats
Source§fn default() -> StationEventTransportStats
fn default() -> StationEventTransportStats
Returns the “default value” for a type. Read more
impl Eq for StationEventTransportStats
impl StructuralPartialEq for StationEventTransportStats
Auto Trait Implementations§
impl Freeze for StationEventTransportStats
impl RefUnwindSafe for StationEventTransportStats
impl Send for StationEventTransportStats
impl Sync for StationEventTransportStats
impl Unpin for StationEventTransportStats
impl UnsafeUnpin for StationEventTransportStats
impl UnwindSafe for StationEventTransportStats
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