pub type Result<T> = Result<T, CryptoError>;Expand description
Result<T, E> type specialization.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(CryptoError),
}pub type Result<T> = Result<T, CryptoError>;Result<T, E> type specialization.
pub enum Result<T> {
Ok(T),
Err(CryptoError),
}