MCPcopy Create free account
hub / github.com/BladeTransformerLLC/gauzilla / execute_future

Function execute_future

src/utils.rs:94–96  ·  view source on GitHub ↗
(f: F)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected