pub enum EventKind {
BeforeKey(Key),
AfterKey(Key),
BeforeComplete,
}
Variants§
BeforeKey(Key)
Sent before handling a keypress.
AfterKey(Key)
Sent after handling a keypress.
BeforeComplete
Sent in Editor.complete()
, before processing the completion.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnwindSafe for EventKind
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