lgui-core 0.2.0

Platform-neutral runtime and UI primitives for LGUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::{UiElement, UiId};

mod identity;
mod lifecycle;
mod memory;
mod storage;

pub use identity::{ComponentId, HookId, HookSlotKind};
pub use storage::{ComponentRuntimeMetrics, ComponentTree};

#[cfg(test)]
#[path = "component_tree_test.rs"]
mod tests;