• fuel-vm 0.25.2/tests/metadata.rs
    149
        #[allow(clippy::iter_cloned_collect)] // collection is also perfomring a type conversion
    150
        let script = script.iter().copied().collect::<Vec<u8>>();
  • fuels-contract 0.33.0/src/contract_calls_utils.rs
    158
        #[allow(clippy::iter_cloned_collect)]
    159
        instructions.iter().copied().collect::<Vec<u8>>()
  • fuels-programs 0.34.0/src/call_utils.rs
    153
        #[allow(clippy::iter_cloned_collect)]
    154
        instructions.iter().copied().collect::<Vec<u8>>()
  • mownstr 0.1.3/benches/bench1.rs
    16
                b.iter(|| {
    17
                    #[allow(clippy::iter_cloned_collect)]
    18
                    // strangely, replacing .iter().cloned().collect() by to_vec(),
  • ntex-bytes 0.1.19/tests/test_bytes.rs
    449
        clippy::redundant_slicing,
    450
        clippy::iter_cloned_collect,
    451
        clippy::needless_borrow
    503
    #[allow(
    504
        clippy::iter_cloned_collect,
    505
        clippy::redundant_slicing,
  • taffy 0.3.0-alpha1/src/node.rs
    123
    #[allow(clippy::iter_cloned_collect)] // due to no-std support, we need to use `iter_cloned` instead of `collect`
    124
    impl Taffy {
  • fuel-asm 0.25.2/tests/encoding.rs
    1
    #![allow(clippy::iter_cloned_collect)] // https://github.com/rust-lang/rust-clippy/issues/9119
  • thiserror 1.0.38/tests/test_expr.rs
    1
    #![allow(clippy::iter_cloned_collect, clippy::option_if_let_else)]
  • thiserror-core 1.0.37/tests/test_expr.rs
    1
    #![allow(clippy::iter_cloned_collect, clippy::option_if_let_else)]
  • thiserror_core2 2.0.1/tests/test_expr.rs
    1
    #![deny(clippy::all, clippy::pedantic)]
    2
    #![allow(clippy::iter_cloned_collect, clippy::option_if_let_else)]
  • thiserror-no-std 2.0.2/tests/test_expr.rs
    1
    #![allow(clippy::iter_cloned_collect, clippy::option_if_let_else)]