pub type String<const N: usize, LenT = usize> = StringInner<LenT, VecStorageInner<[MaybeUninit<u8>; N]>>;
A fixed capacity String.
String
pub struct String<const N: usize, LenT = usize> { /* private fields */ }