Type Alias SimResult

Source
pub type SimResult = Result<(), SimError>;
Expand description

The SimResult is the return type for most simulation functions

Aliased Type§

pub enum SimResult {
    Ok(()),
    Err(SimError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(SimError)

Contains the error value