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