pub enum Category {
Complete,
Kill,
Search,
IncrementalSearch,
Yank,
Digit,
Other,
}
Expand description
Describes the category of a command
A command’s category determines how particular operations behave in succession.
Variants§
Complete
Completion command
Kill
Kill command
Search
Non-incremental search command
IncrementalSearch
Incremental search command
Yank
Yank command
Digit
Digit argument command
Other
Other command
Trait Implementations§
impl Copy for Category
impl Eq for Category
impl StructuralPartialEq for Category
Auto Trait Implementations§
impl Freeze for Category
impl RefUnwindSafe for Category
impl Send for Category
impl Sync for Category
impl Unpin for Category
impl UnwindSafe for Category
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