Task #101183 - added.err
back to task #101183download
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/status.rs:65:9: warning: manual implementation of `Option::map`
# |
# 65 | / match cmdline.find(COMPOSEFS_CMDLINE) {
# 66 | | Some(param) => Some(Self::new(¶m)),
# 67 | | None => None,
# 68 | | }
# | |_________^ help: try: `cmdline.find(COMPOSEFS_CMDLINE).map(|param| Self::new(¶m))`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#manual_map
# = note: `#[warn(clippy::manual_map)]` on by default