pub enum ScanMode {
Paths(Vec<PathBuf>),
AllClients,
SingleClient(ClientType),
}Expand description
Scan mode based on CLI options.
Variants§
Paths(Vec<PathBuf>)
Scan specific paths provided via CLI.
AllClients
Scan all installed AI coding clients.
SingleClient(ClientType)
Scan a specific client.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanMode
impl RefUnwindSafe for ScanMode
impl Send for ScanMode
impl Sync for ScanMode
impl Unpin 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