aiur 0.0.8

Single threaded async executor with structured concurrency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//  \ O /
//  / * \    aiur: the homeplanet for the famous executors
// |' | '|   (c) 2020 - present, Vladimir Zvezda
//   / \
//

// Module level tracing
macro_rules! modtrace {
    ($log:expr, $msg:tt)
        => ( if (MODTRACE) { $log.fmt(format_args!($msg)) });
    ($log:expr, $fmt_str:tt, $($x:expr),* )
        => ( if (MODTRACE) { $log.fmt(format_args!($fmt_str, $($x),*)) } );
}