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