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