mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Reject display attribute on a field
This commit is contained in:
parent
10d1f640da
commit
aa123cfe0c
5 changed files with 40 additions and 4 deletions
|
@ -17,6 +17,9 @@ impl Struct<'_> {
|
|||
fn validate(&self) -> Result<()> {
|
||||
check_no_source(&self.attrs)?;
|
||||
find_duplicate_source(&self.fields)?;
|
||||
for field in &self.fields {
|
||||
field.validate()?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
@ -42,6 +45,21 @@ impl Variant<'_> {
|
|||
fn validate(&self) -> Result<()> {
|
||||
check_no_source(&self.attrs)?;
|
||||
find_duplicate_source(&self.fields)?;
|
||||
for field in &self.fields {
|
||||
field.validate()?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Field<'_> {
|
||||
fn validate(&self) -> Result<()> {
|
||||
if let Some(display) = &self.attrs.display {
|
||||
return Err(Error::new_spanned(
|
||||
display.original,
|
||||
"not expected here; the #[error(...)] attribute belongs on top of a struct or an enum variant",
|
||||
));
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue