pub type CallResult<T, E> = Result<T, RoamError<E>>;
pub enum CallResult<T, E> { Ok(T), Err(RoamError<E>), }
Contains the success value
Contains the error value