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