Could someone help me understand the make_static() call at line 73 in this esp_wifi example? https://github.com/esp-rs/esp-wifi/blob/main/esp-wifi/examples/embassy_bench.rs // Init network stack let stack = &*make_static!(Stack::new( wifi_interface, config, make_static!(StackResources::<3>::new()), seed )); I had some problems with this line and played around a bit, and noticed that the stack can also be created and runs without wrapping it with make_static!() at all. Is that done for safety? Could someone explain? 😅