(f: F)
| 92 | /// Executes an async Future on the current thread |
| 93 | #[inline(always)] |
| 94 | pub fn execute_future<F: Future<Output = ()> + 'static>(f: F) { |
| 95 | wasm_bindgen_futures::spawn_local(f); |
| 96 | } |
| 97 | |
| 98 | |
| 99 | /// Transmutes a slice |
nothing calls this directly
no outgoing calls
no test coverage detected