thiserror/impl/src
David Tolnay 9f27b766f5
Ignore elidable_lifetime_names pedantic clippy lint
warning: the following explicit lifetimes could be elided: 'a
     --> src/var.rs:5:6
      |
    5 | impl<'a, T: Pointer + ?Sized> Pointer for Var<'a, T> {
      |      ^^                                       ^^
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
      = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
      = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
      |
    5 - impl<'a, T: Pointer + ?Sized> Pointer for Var<'a, T> {
    5 + impl<T: Pointer + ?Sized> Pointer for Var<'_, T> {
      |

    warning: the following explicit lifetimes could be elided: 'a
      --> tests/test_lints.rs:40:22
       |
    40 |     pub enum MyError<'a> {
       |                      ^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
       = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
       = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
       |
    40 -     pub enum MyError<'a> {
    40 +     pub enum MyError'_> {
       |

    warning: the following explicit lifetimes could be elided: 'a
       --> tests/test_display.rs:157:14
        |
    157 |         impl<'a> Display for Msg<'a> {
        |              ^^                  ^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
        |
    157 -         impl<'a> Display for Msg<'a> {
    157 +         impl Display for Msg<'_> {
        |
2025-03-02 19:56:43 -08:00
..
ast.rs Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
attr.rs Move recursion checking out of bindings 2024-11-08 12:58:25 -05:00
expand.rs Ignore elidable_lifetime_names pedantic clippy lint 2025-03-02 19:56:43 -08:00
fallback.rs Move fallback expansion to separate module 2024-12-07 09:03:07 -08:00
fmt.rs Fix spans on macro-generated bindings and format variables 2024-12-17 19:14:10 -08:00
generics.rs Generate trait bounds on associated types 2025-01-08 11:43:29 -08:00
lib.rs Move fallback expansion to separate module 2024-12-07 09:03:07 -08:00
prop.rs Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
scan_expr.rs Import expr scanner from syn 2.0.87 2024-11-02 09:42:33 -07:00
unraw.rs Fix spans on macro-generated bindings and format variables 2024-12-17 19:14:10 -08:00
valid.rs Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00