pub struct ApiKeyStats {
pub api_key_id: String,
pub active_connections: usize,
pub total_symbols: usize,
pub total_messages_received: u64,
pub total_messages_parsed: u64,
pub total_errors: u64,
pub connection_stats: Vec<ConnectionStats>,
}Expand description
Statistics for a single API key
Fields§
§api_key_id: String§active_connections: usize§total_symbols: usize§total_messages_received: u64§total_messages_parsed: u64§total_errors: u64§connection_stats: Vec<ConnectionStats>Trait Implementations§
Source§impl Clone for ApiKeyStats
impl Clone for ApiKeyStats
Source§fn clone(&self) -> ApiKeyStats
fn clone(&self) -> ApiKeyStats
Returns a duplicate of the value. Read more
1.0.0 · 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 ApiKeyStats
impl Debug for ApiKeyStats
Source§impl Default for ApiKeyStats
impl Default for ApiKeyStats
Source§fn default() -> ApiKeyStats
fn default() -> ApiKeyStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApiKeyStats
impl RefUnwindSafe for ApiKeyStats
impl Send for ApiKeyStats
impl Sync for ApiKeyStats
impl Unpin for ApiKeyStats
impl UnwindSafe for ApiKeyStats
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