via 2.0.0-gm.48

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Call the provided closure once.
macro_rules! once {
    ($call:expr) => {
        static __1: std::sync::Once = std::sync::Once::new();
        __1.call_once(|| {
            print!("warn: a lossy size hint must be used for RequestBody. ");
            println!("usize::MAX exceeds u64::MAX on this platform.");
        });
    };
}

pub(crate) use once;