pub enum Msg {
AddCompleters(Completers),
Completer(String),
CompletionChange(String),
DeleteCurrentCompletionItem,
SelectNext,
SelectPrevious,
SetOriginalInput(String),
ShowCompletion,
UpdateCompletions(Mode, Text, bool),
Visible(bool),
}Variants§
AddCompleters(Completers)
Completer(String)
CompletionChange(String)
DeleteCurrentCompletionItem
SelectNext
SelectPrevious
SetOriginalInput(String)
ShowCompletion
UpdateCompletions(Mode, Text, bool)
Visible(bool)
Trait Implementations§
Source§impl DisplayVariant for Msg
impl DisplayVariant for Msg
Source§fn display_variant(&self) -> &'static str
fn display_variant(&self) -> &'static str
Formats the current variant of the enum.
Auto Trait Implementations§
impl Freeze for Msg
impl !RefUnwindSafe for Msg
impl !Send for Msg
impl !Sync for Msg
impl Unpin for Msg
impl UnsafeUnpin for Msg
impl !UnwindSafe for Msg
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