pub enum PaneWebKeyOutcome {
Unbound,
Handled {
command: PaneCommand,
resolution: PaneCommandResolution,
},
Failed {
command: PaneCommand,
},
}Expand description
Outcome of feeding one key event to a PaneWebKeyboardController.
Variants§
Unbound
Not a pane binding (or browser-reserved); the host handles it normally.
Handled
The command was resolved (and any structural operations applied).
Fields
§
command: PaneCommandThe command the key mapped to.
§
resolution: PaneCommandResolutionThe full resolution.
Failed
A structural operation failed to apply; focus state is left unchanged.
Fields
§
command: PaneCommandThe command that failed.
Trait Implementations§
Source§impl Clone for PaneWebKeyOutcome
impl Clone for PaneWebKeyOutcome
Source§fn clone(&self) -> PaneWebKeyOutcome
fn clone(&self) -> PaneWebKeyOutcome
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 moreSource§impl Debug for PaneWebKeyOutcome
impl Debug for PaneWebKeyOutcome
impl Eq for PaneWebKeyOutcome
Source§impl PartialEq for PaneWebKeyOutcome
impl PartialEq for PaneWebKeyOutcome
Source§fn eq(&self, other: &PaneWebKeyOutcome) -> bool
fn eq(&self, other: &PaneWebKeyOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaneWebKeyOutcome
Auto Trait Implementations§
impl Freeze for PaneWebKeyOutcome
impl RefUnwindSafe for PaneWebKeyOutcome
impl Send for PaneWebKeyOutcome
impl Sync for PaneWebKeyOutcome
impl Unpin for PaneWebKeyOutcome
impl UnsafeUnpin for PaneWebKeyOutcome
impl UnwindSafe for PaneWebKeyOutcome
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.