pub struct PoolStats {
pub max_fitness: f32,
pub max_fitness_ever: f32,
pub avg_fitness: f32,
pub species_stats: Vec<SpeciesStats>,
}
Fields§
§max_fitness: f32
§max_fitness_ever: f32
§avg_fitness: f32
§species_stats: Vec<SpeciesStats>
Auto Trait Implementations§
impl Freeze for PoolStats
impl RefUnwindSafe for PoolStats
impl Send for PoolStats
impl Sync for PoolStats
impl Unpin for PoolStats
impl UnwindSafe for PoolStats
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