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