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