pub struct KeymapConfiguration {
pub language: String,
pub variant: Option<String>,
pub options: Vec<String>,
}Expand description
Keymap (keyboard layout) configuration.
Fields§
§language: String§variant: Option<String>§options: Vec<String>Trait Implementations§
Source§impl Clone for KeymapConfiguration
impl Clone for KeymapConfiguration
Source§fn clone(&self) -> KeymapConfiguration
fn clone(&self) -> KeymapConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KeymapConfiguration
impl Debug for KeymapConfiguration
Source§impl Default for KeymapConfiguration
impl Default for KeymapConfiguration
Source§fn default() -> KeymapConfiguration
fn default() -> KeymapConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KeymapConfiguration
impl RefUnwindSafe for KeymapConfiguration
impl Send for KeymapConfiguration
impl Sync for KeymapConfiguration
impl Unpin for KeymapConfiguration
impl UnwindSafe for KeymapConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more