Skip to content

AdvanceOutcome

Defined in: error.rs:217

pub enum AdvanceOutcome\<B\> {
Reached,
Event { reason: B },
}

How a stepper’s advance to a target time ended.

A failure is the Err of the Result an advance_to returns rather than a variant here, so a stepper that stops on one still holds the state and time of its last accepted step and its caller can read them.

Reached the target time.


reason: B

An event terminated integration early.