pub type SimResult = Result<(), SimError>;
The SimResult is the return type for most simulation functions
pub enum SimResult { Ok(()), Err(SimError), }
Contains the success value
Contains the error value