pub type CryptoResult<T = ()> = Result<T, CryptoError>;Expand description
a type alias for a Result type configured to use the CryptoError type
Aliased Type§
pub enum CryptoResult<T = ()> {
Ok(T),
Err(CryptoError),
}pub type CryptoResult<T = ()> = Result<T, CryptoError>;a type alias for a Result type configured to use the CryptoError type
pub enum CryptoResult<T = ()> {
Ok(T),
Err(CryptoError),
}