ZIm/crates/gpui/src/platform/keyboard.rs
2025-04-30 08:17:26 +00:00

7 lines
260 B
Rust

/// A trait for platform-specific keyboard layouts
pub trait PlatformKeyboardLayout {
/// Get the keyboard layout ID, which should be unique to the layout
fn id(&self) -> &str;
/// Get the keyboard layout display name
fn name(&self) -> &str;
}