#string #newtype #validation #normalization #reduce-boilerplate

no-std aliri_braid

Improve and strengthen your strings by making them strongly-typed with less boilerplate

18 releases

0.4.0 May 26, 2023
0.3.1 Nov 2, 2022
0.2.4 Jul 21, 2022
0.2.3 Jun 15, 2022
0.1.5 May 20, 2021

#179 in Rust patterns

Download history 2464/week @ 2024-01-03 18120/week @ 2024-01-10 19352/week @ 2024-01-17 18375/week @ 2024-01-24 31523/week @ 2024-01-31 25956/week @ 2024-02-07 27869/week @ 2024-02-14 36618/week @ 2024-02-21 35949/week @ 2024-02-28 39344/week @ 2024-03-06 39995/week @ 2024-03-13 40495/week @ 2024-03-20 49923/week @ 2024-03-27 44116/week @ 2024-04-03 47805/week @ 2024-04-10 39356/week @ 2024-04-17

189,275 downloads per month
Used in 20 crates (16 directly)

MIT/Apache

47KB
245 lines

aliri_braid

Build Status

Improve and strengthen your strings

Strongly-typed APIs reduce errors and confusion over passing around un-typed strings. Braid helps in that endeavor by making it painless to create wrappers around your string values, ensuring that you use them in the right way every time.

Examples of the documentation and implementations provided for braids are available below and in the aliri_braid_examples crate documentation.

Usage

A braid is created by attaching #[braid] to a struct definition. The macro will take care of automatically updating the representation of the struct to wrap a string and generate the borrowed form of the strong type.

use aliri_braid::braid;

#[braid]
pub struct DatabaseName;

Braids of custom string types are also supported, so long as they implement a set of expected traits. If not specified, the type named String in the current namespace will be used.

use aliri_braid::braid;
use compact_str::CompactString as String;

#[braid]
pub struct UserId;

Once created, braids can be passed around as strongly-typed, immutable strings.

fn take_strong_string(n: DatabaseName) {}
fn borrow_strong_string(n: &DatabaseNameRef) {}

let owned = DatabaseName::new(String::from("mongo"));
borrow_strong_string(&owned);
take_strong_string(owned);

A braid can also be untyped for use in stringly-typed interfaces.

fn take_raw_string(s: String) {}
fn borrow_raw_str(s: &str) {}

let owned = DatabaseName::new(String::from("mongo"));
borrow_raw_str(owned.as_str());
take_raw_string(owned.take());

For more information, see the documentation on docs.rs.

Dependencies

~325–780KB
~19K SLoC