mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-03 16:54:24 +00:00
12 lines
219 B
Rust
12 lines
219 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum KeyboardInteractivity {
|
|
None,
|
|
Exclusive,
|
|
OnDemand,
|
|
}
|
|
|
|
impl Default for KeyboardInteractivity {
|
|
fn default() -> Self {
|
|
Self::OnDemand
|
|
}
|
|
}
|