Using a Box<str> in Rust: https://mahdi.blog/rust-box-str-vs-string/ (Unlike String, it isn't resizable, so it doesn't need to store capacity. Box<str> is only two words, unlike the three words in String!)