euv-core 0.5.21

A declarative, cross-platform UI framework for Rust with virtual DOM, reactive signals, and HTML macros for WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::*;

/// Global registry tracking heap-allocated `SignalInner<T>` pointer addresses.
///
/// Each signal's inner state is tracked by its pointer address. This registry
/// is used to check whether a signal allocation is still alive, preventing
/// use-after-free when listeners free signals during dispatch.
///
/// SAFETY: Must only be accessed from the main thread (WASM single-threaded context).
pub(crate) static mut SIGNAL_INNER_REGISTRY: SignalInnerRegistryCell =
    SignalInnerRegistryCell(UnsafeCell::new(None));