Enum rsgenetic::sim::StepResult[][src]

pub enum StepResult {
    Success,
    Failure,
    Done,
}

The result of running a single step.

Variants

The step was successful, but the simulation has not finished.

The step was not successful.

The step was successful and the simulation finished.

Trait Implementations

impl Clone for StepResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for StepResult
[src]

impl PartialEq for StepResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for StepResult
[src]

impl Debug for StepResult
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for StepResult

impl Sync for StepResult