Task #102348 - added.err

back to task #102348
download
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/gc.rs:259:10: warning: called `is_some()` after searching an `Iterator` with `find`
#      |
#  259 |           .find(|be| be.1 == booted_cfs_status.verity)
#      |  __________^
#  260 | |         .is_some()
#      | |__________________^ help: consider using: `any(|be| be.1 == booted_cfs_status.verity)`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#search_is_some
#      = note: `#[warn(clippy::search_is_some)]` on by default