pub struct KeyBindComponent {
pub keybind: String,
pub base: BaseComponent,
}Fields§
§keybind: String§base: BaseComponentImplementations§
Trait Implementations§
Source§impl Clone for KeyBindComponent
impl Clone for KeyBindComponent
Source§fn clone(&self) -> KeyBindComponent
fn clone(&self) -> KeyBindComponent
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 Component for KeyBindComponent
impl Component for KeyBindComponent
fn get_base(&self) -> &BaseComponent
Source§impl Debug for KeyBindComponent
impl Debug for KeyBindComponent
Source§impl<'de> Deserialize<'de> for KeyBindComponent
impl<'de> Deserialize<'de> for KeyBindComponent
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
Source§impl From<KeyBindComponent> for ComponentType
impl From<KeyBindComponent> for ComponentType
Source§fn from(component: KeyBindComponent) -> Self
fn from(component: KeyBindComponent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for KeyBindComponent
impl PartialEq for KeyBindComponent
Source§impl Serialize for KeyBindComponent
impl Serialize for KeyBindComponent
impl StructuralPartialEq for KeyBindComponent
Auto Trait Implementations§
impl Freeze for KeyBindComponent
impl RefUnwindSafe for KeyBindComponent
impl Send for KeyBindComponent
impl Sync for KeyBindComponent
impl Unpin for KeyBindComponent
impl UnwindSafe for KeyBindComponent
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