aliri_braid_examples 0.1.10

Examples demonstrating usage of the `aliri_braid` crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Examples showing the output of using [`aliri_braid`] to
//! generate strongly-typed wrappers around string values.
//!
//! Three types of braids are demonstrated:
//! * [Wrapper][wrapper]
//! * [Validated][validated]
//! * [Normalized][normalized]

pub mod normalized;
pub mod validated;
pub mod wrapper;