pub type GetResult<T> = Result<T, SimError>;
The return value from a call to get()
It can either return a value or a [SimError].
pub enum GetResult<T> { Ok(T), Err(SimError), }
Contains the success value
Contains the error value