pub enum ScanMode {
General,
Maintenance,
Innovation,
}Expand description
Scan mode determining the focus of the repository scan.
Variants§
General
General mode: user provides focus prompt without specifying a mode. Uses task building instructions without maintenance or innovation specific criteria.
Maintenance
Maintenance mode: find bugs, workflow gaps, design flaws, repo rules violations. Focused on break-fix maintenance and code hygiene.
Innovation
Innovation mode: find feature gaps, use-case completeness issues, enhancement opportunities. Focus on new features and strategic additions.
Trait Implementations§
impl Copy for ScanMode
impl Eq for ScanMode
impl StructuralPartialEq for ScanMode
Auto Trait Implementations§
impl Freeze for ScanMode
impl RefUnwindSafe for ScanMode
impl Send for ScanMode
impl Sync for ScanMode
impl Unpin for ScanMode
impl UnsafeUnpin for ScanMode
impl UnwindSafe for ScanMode
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§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.