pub struct ConfigItem {
pub name: String,
pub short_description: Option<String>,
pub description: String,
}Expand description
Contains the name and description of a keyboard layout.
Fields§
§name: String§short_description: Option<String>§description: StringTrait Implementations§
Source§impl Clone for ConfigItem
impl Clone for ConfigItem
Source§fn clone(&self) -> ConfigItem
fn clone(&self) -> ConfigItem
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 ConfigItem
impl Debug for ConfigItem
Source§impl<'de> Deserialize<'de> for ConfigItem
impl<'de> Deserialize<'de> for ConfigItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConfigItem
impl RefUnwindSafe for ConfigItem
impl Send for ConfigItem
impl Sync for ConfigItem
impl Unpin for ConfigItem
impl UnwindSafe for ConfigItem
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