Task #119455 - added.err

back to task #119455
download
Error: CLIPPY_WARNING:
src/lib.rs:1751:24: warning: redundant pattern matching, consider using `is_ok()`
#       |
#  1751 |                 if let Ok(_) = cert.with_policy(NP, None) {
#       |                 -------^^^^^----------------------------- help: try: `if cert.with_policy(NP, None).is_ok()`
#       |
#       = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.95.0/index.html#redundant_pattern_matching
#       = note: `#[warn(clippy::redundant_pattern_matching)]` on by default

Error: CLIPPY_WARNING:
src/lib.rs:1803:28: warning: redundant pattern matching, consider using `is_ok()`
#       |
#  1803 |                     if let Ok(_) = ka.with_policy(NP, None) {
#       |                     -------^^^^^--------------------------- help: try: `if ka.with_policy(NP, None).is_ok()`
#       |
#       = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.95.0/index.html#redundant_pattern_matching