usecrate::services::hotkey::Hotkey;usecrate::services::hotkey::HotkeyScope;pubmodconstructors;pubmodmethods;pubmodtraits;/// Registry for managing hotkeys.
////// Stores all registered hotkeys and provides methods for
/// registration, querying, and filtering by scope.
pubstructHotkeyRegistry{/// All registered hotkeys.
pub(crate)hotkeys:Vec<Hotkey>,
/// Active scope for filtering.
pub(crate)active_scope:Option<HotkeyScope>,
}