pub struct MultiplexerStats {
pub active_requests: usize,
pub total_subscribers: usize,
}Expand description
Statistics about the multiplexer state
Fields§
§active_requests: usizeNumber of unique active requests
total_subscribers: usizeTotal number of subscribers across all requests
Trait Implementations§
Source§impl Clone for MultiplexerStats
impl Clone for MultiplexerStats
Source§fn clone(&self) -> MultiplexerStats
fn clone(&self) -> MultiplexerStats
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 MultiplexerStats
impl Debug for MultiplexerStats
impl Copy for MultiplexerStats
Auto Trait Implementations§
impl Freeze for MultiplexerStats
impl RefUnwindSafe for MultiplexerStats
impl Send for MultiplexerStats
impl Sync for MultiplexerStats
impl Unpin for MultiplexerStats
impl UnwindSafe for MultiplexerStats
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