(&self)
| 197 | /// Return whether one or more errors were reported. |
| 198 | #[inline] |
| 199 | pub fn has_error(&self) -> bool { |
| 200 | !self.0.is_empty() |
| 201 | } |
| 202 | |
| 203 | /// Return a `VerifierStepResult` that is fatal if at least one error was reported, |
| 204 | /// and non-fatal otherwise. |
no test coverage detected