pub struct GatewayCommandPipelineStats {
pub command_frames_decoded: usize,
pub frames_rejected_decode: usize,
pub frames_rejected_non_command: usize,
pub commands_admitted: usize,
pub commands_enqueued: usize,
pub commands_rejected_gateway: usize,
pub commands_rejected_queue: usize,
pub commands_routed_deployment: usize,
pub commands_rejected_deployment: usize,
pub acks_encoded: usize,
}Expand description
Gateway command pipeline statistics.
Fields§
§command_frames_decoded: usizeCommand frames decoded.
frames_rejected_decode: usizeFrames rejected by the binary decoder.
frames_rejected_non_command: usizeNon-command frames rejected by this pipeline.
commands_admitted: usizeCommands admitted by gateway/session metadata.
commands_enqueued: usizeCommands enqueued into target station queues.
commands_rejected_gateway: usizeCommands rejected by gateway/session metadata.
commands_rejected_queue: usizeCommands rejected by station queue or station queue lookup.
commands_routed_deployment: usizeCommands resolved to deployment node delivery routes.
commands_rejected_deployment: usizeCommands rejected by deployment node/station route metadata.
acks_encoded: usizeACK frames encoded.
Trait Implementations§
Source§impl Clone for GatewayCommandPipelineStats
impl Clone for GatewayCommandPipelineStats
Source§fn clone(&self) -> GatewayCommandPipelineStats
fn clone(&self) -> GatewayCommandPipelineStats
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 GatewayCommandPipelineStats
Source§impl Debug for GatewayCommandPipelineStats
impl Debug for GatewayCommandPipelineStats
Source§impl Default for GatewayCommandPipelineStats
impl Default for GatewayCommandPipelineStats
Source§fn default() -> GatewayCommandPipelineStats
fn default() -> GatewayCommandPipelineStats
Returns the “default value” for a type. Read more
impl Eq for GatewayCommandPipelineStats
impl StructuralPartialEq for GatewayCommandPipelineStats
Auto Trait Implementations§
impl Freeze for GatewayCommandPipelineStats
impl RefUnwindSafe for GatewayCommandPipelineStats
impl Send for GatewayCommandPipelineStats
impl Sync for GatewayCommandPipelineStats
impl Unpin for GatewayCommandPipelineStats
impl UnsafeUnpin for GatewayCommandPipelineStats
impl UnwindSafe for GatewayCommandPipelineStats
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