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