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;