seventy-macros

Crates.ioseventy-macros
lib.rsseventy-macros
version0.4.0
created_at2025-01-15 01:52:37.356945+00
updated_at2025-03-04 22:26:30.170106+00
descriptionProcedural macros for Seventy
homepagehttps://github.com/michaelni678/seventy
repositoryhttps://github.com/michaelni678/seventy
max_upload_size
id1516998
size23,750
(michaelni678)

documentation

README

Seventy

Rust newtype sanitization & validation

docs.rs     crates.io     github

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.

Usage

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!

Commit count: 121

cargo fmt