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 duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LineMatcherMode
Source§impl Debug for LineMatcherMode
impl Debug for LineMatcherMode
Source§impl PartialEq for LineMatcherMode
impl PartialEq for LineMatcherMode
Source§fn eq(&self, other: &LineMatcherMode) -> bool
fn eq(&self, other: &LineMatcherMode) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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