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