pub struct GroupStats {
pub total_participants: u16,
pub active_participants: u16,
pub pending_participants: u16,
pub suspended_participants: u16,
pub leaders: u16,
pub members: u16,
pub observers: u16,
pub total_operations: usize,
pub successful_operations: usize,
pub failed_operations: usize,
}Expand description
Group statistics
Fields§
§total_participants: u16§active_participants: u16§pending_participants: u16§suspended_participants: u16§leaders: u16§members: u16§observers: u16§total_operations: usize§successful_operations: usize§failed_operations: usizeTrait Implementations§
Source§impl Clone for GroupStats
impl Clone for GroupStats
Source§fn clone(&self) -> GroupStats
fn clone(&self) -> GroupStats
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 GroupStats
impl RefUnwindSafe for GroupStats
impl Send for GroupStats
impl Sync for GroupStats
impl Unpin for GroupStats
impl UnwindSafe for GroupStats
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