pub(crate) type ServiceResult<T, HalError> = Result<T, CryptoServiceError<HalError>>;Expand description
Convenience alias for the service’s result type.
Aliased Type§
pub(crate) enum ServiceResult<T, HalError> {
Ok(T),
Err(CryptoServiceError<HalError>),
}Variants§
Ok(T)
Contains the success value
Err(CryptoServiceError<HalError>)
Contains the error value