pub struct SessionsOverview {
pub sessions: Vec<StreamSession>,
pub total_count: usize,
pub healthy_count: usize,
pub total_streams: u64,
pub total_frames: u64,
pub total_bytes: u64,
}
Expand description
Overview of multiple sessions
Fields§
§sessions: Vec<StreamSession>
§total_count: usize
§healthy_count: usize
§total_streams: u64
§total_frames: u64
§total_bytes: u64
Trait Implementations§
Source§impl Clone for SessionsOverview
impl Clone for SessionsOverview
Source§fn clone(&self) -> SessionsOverview
fn clone(&self) -> SessionsOverview
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 moreAuto Trait Implementations§
impl Freeze for SessionsOverview
impl RefUnwindSafe for SessionsOverview
impl Send for SessionsOverview
impl Sync for SessionsOverview
impl Unpin for SessionsOverview
impl UnwindSafe for SessionsOverview
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