pub enum PaneKeymapOwner {
Application,
PaneManager,
Unbound,
}Expand description
Who owns a key given its bindings and the active precedence policy.
Variants§
Application
The application handles the key.
PaneManager
The pane manager handles the key.
Unbound
Neither binds the key.
Trait Implementations§
Source§impl Clone for PaneKeymapOwner
impl Clone for PaneKeymapOwner
Source§fn clone(&self) -> PaneKeymapOwner
fn clone(&self) -> PaneKeymapOwner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PaneKeymapOwner
Source§impl Debug for PaneKeymapOwner
impl Debug for PaneKeymapOwner
impl Eq for PaneKeymapOwner
Source§impl PartialEq for PaneKeymapOwner
impl PartialEq for PaneKeymapOwner
Source§fn eq(&self, other: &PaneKeymapOwner) -> bool
fn eq(&self, other: &PaneKeymapOwner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaneKeymapOwner
Auto Trait Implementations§
impl Freeze for PaneKeymapOwner
impl RefUnwindSafe for PaneKeymapOwner
impl Send for PaneKeymapOwner
impl Sync for PaneKeymapOwner
impl Unpin for PaneKeymapOwner
impl UnsafeUnpin for PaneKeymapOwner
impl UnwindSafe for PaneKeymapOwner
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