pub struct SessionQueueStats {
pub total_pending: usize,
pub total_active: usize,
pub external_pending: usize,
pub lanes: HashMap<String, LaneStatus>,
}Expand description
Statistics for a session queue
Fields§
§total_pending: usize§total_active: usize§external_pending: usize§lanes: HashMap<String, LaneStatus>Trait Implementations§
Source§impl Clone for SessionQueueStats
impl Clone for SessionQueueStats
Source§fn clone(&self) -> SessionQueueStats
fn clone(&self) -> SessionQueueStats
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 SessionQueueStats
impl Debug for SessionQueueStats
Source§impl Default for SessionQueueStats
impl Default for SessionQueueStats
Source§fn default() -> SessionQueueStats
fn default() -> SessionQueueStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionQueueStats
impl<'de> Deserialize<'de> for SessionQueueStats
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 SessionQueueStats
impl RefUnwindSafe for SessionQueueStats
impl Send for SessionQueueStats
impl Sync for SessionQueueStats
impl Unpin for SessionQueueStats
impl UnsafeUnpin for SessionQueueStats
impl UnwindSafe for SessionQueueStats
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