[][src]Struct heredity::ThreadSim

pub struct ThreadSim { /* fields omitted */ }

Main simulation runner.

Implementations

impl ThreadSim[src]

pub fn start<T>(params: Parameters<T>) -> ThreadSim where
    T: 'static + FitnessEvaluator + Send + Sync
[src]

Starts a simulation thread using the provided parameters.

start returns a result receiver that can be used to read result snapshots.

pub fn results(&self) -> &Receiver<SimResult>[src]

Returns a reference to the simulation result receiver.

pub fn stop(self) -> Result<(), SimulationError>[src]

Stops the simulation.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,