Skip to content

Commit

Permalink
Suppress deprecation warning on generated From impls
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 8, 2024
1 parent caf585c commit 6e8c724
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions impl/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,9 @@ fn impl_struct(input: Struct) -> TokenStream {
let source_var = Ident::new("source", span);
let body = from_initializer(from_field, backtrace_field, &source_var);
quote_spanned! {span=>
#[allow(unused_qualifications, clippy::needless_lifetimes)]
#[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)]
#[automatically_derived]
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
#[allow(deprecated)]
fn from(#source_var: #from) -> Self {
#ty #body
}
Expand Down Expand Up @@ -435,10 +434,9 @@ fn impl_enum(input: Enum) -> TokenStream {
let source_var = Ident::new("source", span);
let body = from_initializer(from_field, backtrace_field, &source_var);
Some(quote_spanned! {span=>
#[allow(unused_qualifications, clippy::needless_lifetimes)]
#[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)]
#[automatically_derived]
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
#[allow(deprecated)]
fn from(#source_var: #from) -> Self {
#ty::#variant #body
}
Expand Down

0 comments on commit 6e8c724

Please sign in to comment.