pub struct GatewayStats {
pub total_services: usize,
pub running_services: usize,
pub total_tools: usize,
pub total_nodes: usize,
pub total_callbacks: usize,
pub total_errors: usize,
}Expand description
Gateway statistics
Fields§
§total_services: usizeTotal registered services
running_services: usizeRunning services
total_tools: usizeTotal registered tools
total_nodes: usizeTotal registered nodes
total_callbacks: usizeTotal callbacks processed
total_errors: usizeTotal errors
Trait Implementations§
Source§impl Clone for GatewayStats
impl Clone for GatewayStats
Source§fn clone(&self) -> GatewayStats
fn clone(&self) -> GatewayStats
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 GatewayStats
impl Debug for GatewayStats
Source§impl Default for GatewayStats
impl Default for GatewayStats
Source§fn default() -> GatewayStats
fn default() -> GatewayStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GatewayStats
impl RefUnwindSafe for GatewayStats
impl Send for GatewayStats
impl Sync for GatewayStats
impl Unpin for GatewayStats
impl UnsafeUnpin for GatewayStats
impl UnwindSafe for GatewayStats
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