Skip to main content

teksilo_core/
widget_id.rs

1// SPDX-License-Identifier: MPL-2.0
2// SPDX-FileCopyrightText: 2026 FernTech
3
4use slotmap::new_key_type;
5
6new_key_type! {
7    /// Unique identifier for a widget in the arena.
8    pub struct WidgetId;
9}