mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
Perform all validation up front
This commit is contained in:
parent
90020d4804
commit
1764ddeae4
4 changed files with 64 additions and 28 deletions
36
impl/src/valid.rs
Normal file
36
impl/src/valid.rs
Normal file
|
@ -0,0 +1,36 @@
|
|||
use crate::ast::{Enum, Input, Struct};
|
||||
use syn::{Error, Result};
|
||||
|
||||
pub(crate) const CHECKED: &str = "checked in validation";
|
||||
|
||||
impl Input<'_> {
|
||||
pub(crate) fn validate(&self) -> Result<()> {
|
||||
match self {
|
||||
Input::Struct(input) => input.validate(),
|
||||
Input::Enum(input) => input.validate(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Struct<'_> {
|
||||
fn validate(&self) -> Result<()> {
|
||||
// nothing for now
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Enum<'_> {
|
||||
fn validate(&self) -> Result<()> {
|
||||
if self.has_display() {
|
||||
for variant in &self.variants {
|
||||
if variant.attrs.display.is_none() {
|
||||
return Err(Error::new_spanned(
|
||||
variant.original,
|
||||
"missing #[error(\"...\")] display attribute",
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue