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