pub struct CommandDispatchTransportStats {
pub commands_sent: usize,
pub bytes_sent: usize,
pub packets_received: usize,
pub bytes_received: usize,
pub commands_enqueued: usize,
pub commands_rejected_queue: usize,
}Expand description
Statistics for command dispatch transport bridging.
Fields§
§commands_sent: usizeCommands 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.
commands_enqueued: usizeCommands decoded and enqueued at the target station.
commands_rejected_queue: usizeCommands rejected by target station queues.
Trait Implementations§
Source§impl Clone for CommandDispatchTransportStats
impl Clone for CommandDispatchTransportStats
Source§fn clone(&self) -> CommandDispatchTransportStats
fn clone(&self) -> CommandDispatchTransportStats
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 CommandDispatchTransportStats
Source§impl Default for CommandDispatchTransportStats
impl Default for CommandDispatchTransportStats
Source§fn default() -> CommandDispatchTransportStats
fn default() -> CommandDispatchTransportStats
Returns the “default value” for a type. Read more
impl Eq for CommandDispatchTransportStats
impl StructuralPartialEq for CommandDispatchTransportStats
Auto Trait Implementations§
impl Freeze for CommandDispatchTransportStats
impl RefUnwindSafe for CommandDispatchTransportStats
impl Send for CommandDispatchTransportStats
impl Sync for CommandDispatchTransportStats
impl Unpin for CommandDispatchTransportStats
impl UnsafeUnpin for CommandDispatchTransportStats
impl UnwindSafe for CommandDispatchTransportStats
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