I briefly looked at the code and it seems there is no reason to convert it. Even more, it violates Rust's safety rules, because the memory is not initialized.  <img width="907" alt="image" src="https://github.com/yegor256/microstack/assets/59261226/0dcce625-5c65-4d93-968a-1b988f79c933"> So make `items` to be `MaybeUninit` <img width="350" alt="image" src="https://github.com/yegor256/microstack/assets/59261226/99658dc9-bcc3-4a76-b63b-bc479a74bdaa">
I briefly looked at the code and it seems there is no reason to convert it.
Even more, it violates Rust's safety rules, because the memory is not initialized.
So make
itemsto beMaybeUninit