pub type str32 = tstr<32>;
A str32 can hold a string of up to 31 bytes. See docs for zstr
pub struct str32 { chrs: [u8; 32], }
chrs: [u8; 32]
+