| Crates.io | seventy-macros |
| lib.rs | seventy-macros |
| version | 0.4.0 |
| created_at | 2025-01-15 01:52:37.356945+00 |
| updated_at | 2025-03-04 22:26:30.170106+00 |
| description | Procedural macros for Seventy |
| homepage | https://github.com/michaelni678/seventy |
| repository | https://github.com/michaelni678/seventy |
| max_upload_size | |
| id | 1516998 |
| size | 23,750 |
Seventy is a simple newtype sanitizer and validator.
Why newtypes?
Newtypes provide compile-time guarantees that your program is using the correct values by wrapping existing types.
Why sanitize?
Newtypes are sanitized during construction, ensuring the values conform to the formats you expect.
Why validate?
Newtypes are validated during construction, ensuring it's impossible to create a newtype with values that don't meet the defined rules.
There is no error handling. If you need to know why the newtype couldn't be created, this crate isn't for you.
The example below first trims the string and then validates if the trimmed string is both
alphanumeric and between 5 to 20 characters long. The display upgrade automatically implements
the Display trait.
use seventy::{
builtins::{compare::*, string::*},
seventy, Newtype,
};
#[seventy(
upgrades(display),
sanitize(trim),
validate(alphanumeric, length::chars(within(5..=20))),
)]
pub struct Username(String);
assert_eq!(
Username::try_new(" username ").unwrap().into_inner(),
"username"
);
assert!(Username::try_new(" u$ername ").is_err());
See the examples directory for more!