Trait System

Source
pub trait System {
    // Required method
    fn ga_loop(
        all: &mut Self,
        number: usize,
        cross_type: i8,
        genome_mutation: f32,
        min: f32,
        max: f32,
    );
}

Required Methods§

Source

fn ga_loop( all: &mut Self, number: usize, cross_type: i8, genome_mutation: f32, min: f32, max: f32, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§