pub struct GroupPerformance {
pub timestamp: u64,
pub task_completion_rate: f64,
pub decision_accuracy: f64,
pub coordination_efficiency: f64,
pub innovation_rate: f64,
}Expand description
Group performance metrics
Fieldsยง
ยงtimestamp: u64Performance measurement time
task_completion_rate: f64Task completion rate
decision_accuracy: f64Decision accuracy
coordination_efficiency: f64Coordination efficiency
innovation_rate: f64Innovation rate
Trait Implementationsยง
Sourceยงimpl Clone for GroupPerformance
impl Clone for GroupPerformance
Sourceยงfn clone(&self) -> GroupPerformance
fn clone(&self) -> GroupPerformance
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 GroupPerformance
impl Debug for GroupPerformance
Sourceยงimpl<'de> Deserialize<'de> for GroupPerformance
impl<'de> Deserialize<'de> for GroupPerformance
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 GroupPerformance
impl RefUnwindSafe for GroupPerformance
impl Send for GroupPerformance
impl Sync for GroupPerformance
impl Unpin for GroupPerformance
impl UnwindSafe for GroupPerformance
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