enfync 0.1.6

Environment-friendly async utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//local shortcuts
use crate::builtin::*;

//third-party shortcuts

//standard shortcuts


//-------------------------------------------------------------------------------------------------------------------

#[cfg(not(target_family = "wasm"))]
pub type Handle = native::TokioHandle;

#[cfg(target_family = "wasm")]
pub type Handle = wasm::WASMHandle;

//-------------------------------------------------------------------------------------------------------------------