//! [`Element`] — opaque, `Copy`, backend-agnostic identifier.
//!
//! IDs are allocated by the renderer's [`create_element`] call and
//! are valid until [`release_element`] (or the renderer being
//! uninstalled). They have no semantic meaning to user code beyond
//! "name this element in subsequent renderer calls"; the renderer
//! is free to use them as indices, hash keys, or whatever fits.
//!
//! [`create_element`]: super::create_element
//! [`release_element`]: super::release_element
/// Backend-agnostic element handle. `Copy` so it threads through
/// reactive closures without lifetime gymnastics.
u32);