mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Treat the #[from] field implicitly as source
This commit is contained in:
parent
2305f75976
commit
03e77b3d2b
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ impl Variant<'_> {
|
||||||
|
|
||||||
fn source_field<'a, 'b>(fields: &'a [Field<'b>]) -> Option<&'a Field<'b>> {
|
fn source_field<'a, 'b>(fields: &'a [Field<'b>]) -> Option<&'a Field<'b>> {
|
||||||
for field in fields {
|
for field in fields {
|
||||||
if field.attrs.source.is_some() {
|
if field.attrs.from.is_some() || field.attrs.source.is_some() {
|
||||||
return Some(&field);
|
return Some(&field);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue