pub enum TextEditorEvent {
None,
CursorMove,
LagChange,
Change,
KeyFocus,
KeyFocusLost,
Escape,
Return,
Search(String),
Decl(String),
}
Variants
None
CursorMove
LagChange
Change
KeyFocus
KeyFocusLost
Escape
Return
Search(String)
Decl(String)
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TextEditorEvent
impl Send for TextEditorEvent
impl Sync for TextEditorEvent
impl Unpin for TextEditorEvent
impl UnwindSafe for TextEditorEvent
Blanket Implementations
Mutably borrows from an owned value. Read more