macro_rules! init { ($($lazy:ident)*) => { ... }; }
This macro is used to initialize lazy statics, which is required for them to be safe in multithreaded environments.
Equivalent to _ = *(your lazy static);;
_ = *(your lazy static);