Type Definition cranelift_codegen::verifier::VerifierResult
source · 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.