pub struct CoordinationPoolStats {
pub active_sessions: usize,
pub max_sessions: usize,
pub locked_perceptions: usize,
pub average_session_duration_ms: f64,
}Expand description
Statistics for coordination pool monitoring
Fields§
§active_sessions: usize§max_sessions: usize§locked_perceptions: usize§average_session_duration_ms: f64Trait Implementations§
Source§impl Clone for CoordinationPoolStats
impl Clone for CoordinationPoolStats
Source§fn clone(&self) -> CoordinationPoolStats
fn clone(&self) -> CoordinationPoolStats
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 CoordinationPoolStats
impl Debug for CoordinationPoolStats
Source§impl<'de> Deserialize<'de> for CoordinationPoolStats
impl<'de> Deserialize<'de> for CoordinationPoolStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CoordinationPoolStats
impl RefUnwindSafe for CoordinationPoolStats
impl Send for CoordinationPoolStats
impl Sync for CoordinationPoolStats
impl Unpin for CoordinationPoolStats
impl UnsafeUnpin for CoordinationPoolStats
impl UnwindSafe for CoordinationPoolStats
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