pub type VerifierResult<T> = Result<T, VerifierErrors>;
Expand description
Result of a verification operation.
Unlike VerifierStepResult
which may be Ok
while still having reported
errors, this type always returns Err
if an error (fatal or not) was reported.
Aliased Type§
pub enum VerifierResult<T> {
Ok(T),
Err(VerifierErrors),
}