pub struct Keybind {
pub action_id: String,
pub key: String,
pub category: String,
pub description: String,
pub is_default: bool,
}Expand description
Represents a single keybind configuration
Fields§
§action_id: String§key: String§category: String§description: String§is_default: boolImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Keybind
impl<'de> Deserialize<'de> for Keybind
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
impl Eq for Keybind
impl StructuralPartialEq for Keybind
Auto Trait Implementations§
impl Freeze for Keybind
impl RefUnwindSafe for Keybind
impl Send for Keybind
impl Sync for Keybind
impl Unpin for Keybind
impl UnwindSafe for Keybind
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