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