Report a non-fatal error and return `Ok`.
(&mut self, error: impl Into<VerifierError>)
| 220 | |
| 221 | /// Report a non-fatal error and return `Ok`. |
| 222 | pub fn nonfatal(&mut self, error: impl Into<VerifierError>) -> VerifierStepResult { |
| 223 | self.report(error); |
| 224 | Ok(()) |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | impl From<Vec<VerifierError>> for VerifierErrors { |
no test coverage detected