Check if the verification succeeded.
(&self)
| 385 | impl VerificationResult { |
| 386 | /// Check if the verification succeeded. |
| 387 | pub fn is_valid(&self) -> bool { |
| 388 | matches!(self, VerificationResult::Valid { .. }) |
| 389 | } |
| 390 | |
| 391 | /// Check if the verification failed. |
| 392 | pub fn is_invalid(&self) -> bool { |