pub struct RuntimeStatsSnapshot {
pub sides: Vec<RuntimeSideStats>,
pub route_modes: Vec<RouteModeStats>,
pub route_overrides: Vec<RouteOverrideStats>,
pub typed_route_overrides: Vec<TypedRouteOverrideStats>,
pub route_weights: Vec<RouteWeightStats>,
pub route_priorities: Vec<RoutePriorityStats>,
pub queues: QueueRuntimeStats,
pub reliable: ReliableRuntimeStats,
pub discovery: DiscoveryRuntimeStats,
pub total_handler_failures: u64,
pub total_handler_retries: u64,
}Fields§
§sides: Vec<RuntimeSideStats>§route_modes: Vec<RouteModeStats>§route_overrides: Vec<RouteOverrideStats>§typed_route_overrides: Vec<TypedRouteOverrideStats>§route_weights: Vec<RouteWeightStats>§route_priorities: Vec<RoutePriorityStats>§queues: QueueRuntimeStats§reliable: ReliableRuntimeStats§discovery: DiscoveryRuntimeStats§total_handler_failures: u64§total_handler_retries: u64Trait Implementations§
Source§impl Clone for RuntimeStatsSnapshot
impl Clone for RuntimeStatsSnapshot
Source§fn clone(&self) -> RuntimeStatsSnapshot
fn clone(&self) -> RuntimeStatsSnapshot
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 moreSource§impl Debug for RuntimeStatsSnapshot
impl Debug for RuntimeStatsSnapshot
impl Eq for RuntimeStatsSnapshot
Source§impl PartialEq for RuntimeStatsSnapshot
impl PartialEq for RuntimeStatsSnapshot
Source§fn eq(&self, other: &RuntimeStatsSnapshot) -> bool
fn eq(&self, other: &RuntimeStatsSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeStatsSnapshot
Auto Trait Implementations§
impl Freeze for RuntimeStatsSnapshot
impl RefUnwindSafe for RuntimeStatsSnapshot
impl Send for RuntimeStatsSnapshot
impl Sync for RuntimeStatsSnapshot
impl Unpin for RuntimeStatsSnapshot
impl UnsafeUnpin for RuntimeStatsSnapshot
impl UnwindSafe for RuntimeStatsSnapshot
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