pub type SimResult<Ok = ()> = Result<Ok, Error>;
Type-alias for the general result-type for functions and structures of the simulation library.
pub enum SimResult<Ok = ()> { Ok(Ok), Err(Error), }
Contains the success value
Contains the error value