thiserror/impl
David Tolnay f09771ebba
Ignore manual_find clippy lint
error: manual implementation of `Iterator::find`
      --> impl/src/prop.rs:76:5
       |
    76 | /     for field in fields {
    77 | |         if field.attrs.from.is_some() {
    78 | |             return Some(field);
    79 | |         }
    80 | |     }
    81 | |     None
       | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.attrs.from.is_some())`
       |
       = note: `-D clippy::manual-find` implied by `-D clippy::all`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find

    error: manual implementation of `Iterator::find`
       --> impl/src/prop.rs:105:5
        |
    105 | /     for field in fields {
    106 | |         if field.is_backtrace() {
    107 | |             return Some(field);
    108 | |         }
    109 | |     }
    110 | |     None
        | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.is_backtrace())`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find
2022-07-01 19:32:32 -07:00
..
src Ignore manual_find clippy lint 2022-07-01 19:32:32 -07:00
Cargo.toml Release 1.0.31 2022-04-30 14:23:31 -07:00
LICENSE-APACHE Link license files into impl subcrate 2020-02-14 11:11:30 -08:00
LICENSE-MIT Link license files into impl subcrate 2020-02-14 11:11:30 -08:00