pub struct KeymapConflict {
pub signature: KeymapBindingSignature,
pub kind: KeymapConflictKind,
pub entries: Vec<KeymapConflictEntry>,
}Fields§
§signature: KeymapBindingSignature§kind: KeymapConflictKind§entries: Vec<KeymapConflictEntry>Oldest -> newest (so the effective winner is entries.last()).
Trait Implementations§
Source§impl Clone for KeymapConflict
impl Clone for KeymapConflict
Source§fn clone(&self) -> KeymapConflict
fn clone(&self) -> KeymapConflict
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 KeymapConflict
impl Debug for KeymapConflict
Source§impl PartialEq for KeymapConflict
impl PartialEq for KeymapConflict
impl Eq for KeymapConflict
impl StructuralPartialEq for KeymapConflict
Auto Trait Implementations§
impl Freeze for KeymapConflict
impl RefUnwindSafe for KeymapConflict
impl Send for KeymapConflict
impl Sync for KeymapConflict
impl Unpin for KeymapConflict
impl UnsafeUnpin for KeymapConflict
impl UnwindSafe for KeymapConflict
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