1
 2
 3
 4
 5
 6
 7
 8
 9
10
#![doc(html_root_url = "https://docs.rs/fixed_len_str_example/0.2.2/")]
#![no_std]
#![feature(pattern)]
//! This crate contains an example of the struct generated by the procedural macro contained in [fixed_len_str](https://crates.io/crates/fixed_len_str),use that
//! macro instead.

use fixed_len_str::{fixed_len_str, fixed_len_str_nz};

fixed_len_str!(12);
fixed_len_str_nz!(12);