pub enum TaskCategory {
Coding,
Research,
FileOps,
Shell,
Git,
DataProcessing,
General,
Unknown,
}Expand description
Task categories for classification.
Variants§
Coding
Code reading, writing, refactoring.
Research
Web search, research, information gathering.
FileOps
File system operations (read, write, list).
Shell
Shell command execution.
Git
Git operations.
DataProcessing
Data analysis, transformation.
General
General conversation, Q&A.
Unknown
Unknown / cannot classify.
Implementations§
Trait Implementations§
Source§impl Clone for TaskCategory
impl Clone for TaskCategory
Source§fn clone(&self) -> TaskCategory
fn clone(&self) -> TaskCategory
Returns a duplicate 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 TaskCategory
impl Debug for TaskCategory
Source§impl Hash for TaskCategory
impl Hash for TaskCategory
Source§impl PartialEq for TaskCategory
impl PartialEq for TaskCategory
impl Copy for TaskCategory
impl Eq for TaskCategory
impl StructuralPartialEq for TaskCategory
Auto Trait Implementations§
impl Freeze for TaskCategory
impl RefUnwindSafe for TaskCategory
impl Send for TaskCategory
impl Sync for TaskCategory
impl Unpin for TaskCategory
impl UnsafeUnpin for TaskCategory
impl UnwindSafe for TaskCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.