Enum modalkit::env::mixed::MixedBindings

source ·
pub enum MixedBindings<K, I = EmptyInfo>
where K: InputKey, I: ApplicationInfo, InputStep<I>: Step<K>, InputStep<I>: Step<K>,
{ Emacs(EmacsMachine<K, I>), Vim(VimMachine<K, I>), }
Expand description

Type for wrapping different keybindings in contexts where keybindings can be determined dynamically.

Variants§

§

Emacs(EmacsMachine<K, I>)

Wrap Emacs bindings.

§

Vim(VimMachine<K, I>)

Wrap Vim bindings.

Trait Implementations§

source§

impl<K, I> BindingMachine<K, Action<I>, RepeatType, EditContext> for MixedBindings<K, I>
where K: InputKey, I: ApplicationInfo, InputStep<I>: Step<K, A = Action<I>, Sequence = RepeatType, State = EmacsState<I>>, InputStep<I>: Step<K, A = Action<I>, Sequence = RepeatType, State = VimState<I>>,

source§

fn input_key(&mut self, key: K)

Process a typed key.
source§

fn pop(&mut self) -> Option<(Action<I>, EditContext)>

Fetch the next action produced by previously typed keys.
source§

fn context(&mut self) -> EditContext

Get current output context after the most recent keypress.
source§

fn show_dialog(&mut self, max_rows: usize, max_cols: usize) -> Vec<Cow<'_, str>>

Returns the message to display for the current interactive dialog, if there is one. Read more
source§

fn show_mode(&self) -> Option<String>

Returns a user-friendly string to display for the current mode.
source§

fn get_cursor_indicator(&self) -> Option<char>

Returns a character to show for the cursor.
source§

fn repeat(&mut self, rt: RepeatType, other: Option<EditContext>)

Repeat a recent sequence of tracked actions, and optionally override their original contexts using InputState::merge. The repeated sequence will be inserted at the beginning of the action queue, before any other pending actions. Read more
source§

fn run_dialog(&mut self, dialog: Box<dyn Dialog<Action<I>>>)

Start an interactive user dialog.
source§

impl<I> From<MixedChoice> for MixedBindings<TerminalKey, I>
where I: ApplicationInfo,

source§

fn from(choice: MixedChoice) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<K, I = EmptyInfo> !Freeze for MixedBindings<K, I>

§

impl<K, I = EmptyInfo> !RefUnwindSafe for MixedBindings<K, I>

§

impl<K, I = EmptyInfo> !Send for MixedBindings<K, I>

§

impl<K, I = EmptyInfo> !Sync for MixedBindings<K, I>

§

impl<K, I = EmptyInfo> !Unpin for MixedBindings<K, I>

§

impl<K, I = EmptyInfo> !UnwindSafe for MixedBindings<K, I>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Any for T
where T: Any,