* So I have the following code that leads to my rp2040's core to immediately "lock up" (I assume it's crashing but I get no crash log via probe-rs). My guess is that the static str stuff I'm doing is just wrong (though I saw it used similarly elsewhere). Any suggestions on how to make it work? (Or maybe what I'm doing wrong?) ``` pub type Name = &'static str; pub struct SubMenu { pub name: Name // [..] } impl SubMenu { fn get_name(&self) -> Name { self.name } } fn main() { let menu = SubMenu { "Test" }; // This line causes the issue: let name = menu.get_name(); } ```