pub struct BindingConflict {
pub group: String,
pub action_a: Action,
pub action_b: Action,
pub key: Key,
}Expand description
A binding conflict: two actions share the same key within the same group.
Fields§
§group: String§action_a: Action§action_b: Action§key: KeyTrait Implementations§
Source§impl Clone for BindingConflict
impl Clone for BindingConflict
Source§fn clone(&self) -> BindingConflict
fn clone(&self) -> BindingConflict
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 moreAuto Trait Implementations§
impl Freeze for BindingConflict
impl RefUnwindSafe for BindingConflict
impl Send for BindingConflict
impl Sync for BindingConflict
impl Unpin for BindingConflict
impl UnsafeUnpin for BindingConflict
impl UnwindSafe for BindingConflict
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