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