mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
Suppress deprecation warning on generated From impls
This commit is contained in:
parent
caf585c978
commit
6e8c7244c9
1 changed files with 2 additions and 4 deletions
|
@ -170,10 +170,9 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
let source_var = Ident::new("source", span);
|
let source_var = Ident::new("source", span);
|
||||||
let body = from_initializer(from_field, backtrace_field, &source_var);
|
let body = from_initializer(from_field, backtrace_field, &source_var);
|
||||||
quote_spanned! {span=>
|
quote_spanned! {span=>
|
||||||
#[allow(unused_qualifications, clippy::needless_lifetimes)]
|
#[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)]
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
||||||
#[allow(deprecated)]
|
|
||||||
fn from(#source_var: #from) -> Self {
|
fn from(#source_var: #from) -> Self {
|
||||||
#ty #body
|
#ty #body
|
||||||
}
|
}
|
||||||
|
@ -435,10 +434,9 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
let source_var = Ident::new("source", span);
|
let source_var = Ident::new("source", span);
|
||||||
let body = from_initializer(from_field, backtrace_field, &source_var);
|
let body = from_initializer(from_field, backtrace_field, &source_var);
|
||||||
Some(quote_spanned! {span=>
|
Some(quote_spanned! {span=>
|
||||||
#[allow(unused_qualifications, clippy::needless_lifetimes)]
|
#[allow(deprecated, unused_qualifications, clippy::needless_lifetimes)]
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
||||||
#[allow(deprecated)]
|
|
||||||
fn from(#source_var: #from) -> Self {
|
fn from(#source_var: #from) -> Self {
|
||||||
#ty::#variant #body
|
#ty::#variant #body
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue