pub enum LineMatcherMode {
Execute,
AutocompleteOnly,
}
Expand description
Should we stop processing commands when we find a match or should we just collect autocomplete suggestions?
Variants§
Trait Implementations§
Source§impl Clone for LineMatcherMode
impl Clone for LineMatcherMode
Source§fn clone(&self) -> LineMatcherMode
fn clone(&self) -> LineMatcherMode
Returns a copy of the value. Read more
1.0.0 · 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 LineMatcherMode
impl Debug for LineMatcherMode
Source§impl PartialEq for LineMatcherMode
impl PartialEq for LineMatcherMode
impl Copy for LineMatcherMode
impl StructuralPartialEq for LineMatcherMode
Auto Trait Implementations§
impl Freeze for LineMatcherMode
impl RefUnwindSafe for LineMatcherMode
impl Send for LineMatcherMode
impl Sync for LineMatcherMode
impl Unpin for LineMatcherMode
impl UnwindSafe for LineMatcherMode
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