Skip to content

experiments

experiments #589

GitHub Actions / clippy succeeded Feb 14, 2025 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.84.1 (e71f9a9a9 2025-01-27)
  • cargo 1.84.1 (66221abde 2024-11-19)
  • clippy 0.1.84 (e71f9a9a98 2025-01-27)

Annotations

Check warning on line 576 in src/channel.rs

@github-actions github-actions / clippy

this `map_or` is redundant

warning: this `map_or` is redundant
   --> src/channel.rs:576:17
    |
576 |             || !error.as_ref().map_or(false, |e| e.is_amqp_soft_error())
    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_some_and instead: `error.as_ref().is_some_and(|e| e.is_amqp_soft_error())`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
    = note: `-W clippy::unnecessary-map-or` implied by `-W clippy::all`
    = help: to override `-W clippy::all` add `#[allow(clippy::unnecessary_map_or)]`