euv-macros 0.4.4

Procedural macros for the euv UI framework, providing the macro and attribute for declarative UI composition.
Documentation
1
2
3
4
5
use crate::*;

/// Global mutable storage for function names defined in the user's project.
/// Populated by scanning source files before `html!` macro expansion.
pub(crate) static mut USER_FN_NAMES: MaybeUninit<HashSet<String>> = MaybeUninit::uninit();