pub struct CoordinatorStats {
pub coordinator_id: String,
pub total_agents: usize,
pub total_trajectories: usize,
pub patterns_learned: usize,
pub avg_quality: f32,
pub quality_threshold: f32,
}Expand description
Coordinator statistics
Fields§
§coordinator_id: StringCoordinator identifier
total_agents: usizeNumber of contributing agents
total_trajectories: usizeTotal trajectories aggregated
patterns_learned: usizePatterns learned
avg_quality: f32Average quality across all contributions
quality_threshold: f32Quality threshold
Trait Implementations§
Source§impl Clone for CoordinatorStats
impl Clone for CoordinatorStats
Source§fn clone(&self) -> CoordinatorStats
fn clone(&self) -> CoordinatorStats
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 CoordinatorStats
impl Debug for CoordinatorStats
Source§impl<'de> Deserialize<'de> for CoordinatorStats
impl<'de> Deserialize<'de> for CoordinatorStats
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
Source§impl Display for CoordinatorStats
impl Display for CoordinatorStats
Auto Trait Implementations§
impl Freeze for CoordinatorStats
impl RefUnwindSafe for CoordinatorStats
impl Send for CoordinatorStats
impl Sync for CoordinatorStats
impl Unpin for CoordinatorStats
impl UnwindSafe for CoordinatorStats
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