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