()
| 50 | } |
| 51 | |
| 52 | fn pending_route_slot() -> &'static Mutex<Option<String>> { |
| 53 | static SLOT: OnceLock<Mutex<Option<String>>> = OnceLock::new(); |
| 54 | SLOT.get_or_init(|| Mutex::new(None)) |
| 55 | } |
| 56 | |
| 57 | #[cfg(target_arch = "wasm32")] |
| 58 | fn router_init_slot() -> &'static OnceLock<()> { |
no outgoing calls
no test coverage detected