Resolve extra_unused_lifetimes clippy lint

warning: this lifetime isn't used in the impl
      --> src/aserror.rs:46:6
       |
    46 | impl<'a, T: Error + 'a> Sealed for T {}
       |      ^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
       = note: `-W clippy::extra-unused-lifetimes` implied by `-W clippy::all`
       = help: to override `-W clippy::all` add `#[allow(clippy::extra_unused_lifetimes)]`
This commit is contained in:
David Tolnay 2024-10-07 00:15:12 +02:00
parent 1b15d6e6a4
commit a72ea77c45
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -43,7 +43,7 @@ impl<'a> AsDynError<'a> for dyn Error + Send + Sync + UnwindSafe + 'a {
#[doc(hidden)]
pub trait Sealed {}
impl<'a, T: Error + 'a> Sealed for T {}
impl<T: Error> Sealed for T {}
impl<'a> Sealed for dyn Error + 'a {}
impl<'a> Sealed for dyn Error + Send + 'a {}
impl<'a> Sealed for dyn Error + Send + Sync + 'a {}