pub enum ExecutionScope {
File,
Module(PathBuf),
Codebase,
Custom(Vec<PathBuf>),
}Expand description
Execution scope for analysis operations
Variants§
File
Single file analysis
Module(PathBuf)
Module or directory level
Codebase
Entire codebase
Custom(Vec<PathBuf>)
Custom scope with specific files
Trait Implementations§
Source§impl Clone for ExecutionScope
impl Clone for ExecutionScope
Source§fn clone(&self) -> ExecutionScope
fn clone(&self) -> ExecutionScope
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 ExecutionScope
impl Debug for ExecutionScope
Source§impl Default for ExecutionScope
impl Default for ExecutionScope
Source§fn default() -> ExecutionScope
fn default() -> ExecutionScope
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExecutionScope
impl RefUnwindSafe for ExecutionScope
impl Send for ExecutionScope
impl Sync for ExecutionScope
impl Unpin for ExecutionScope
impl UnsafeUnpin for ExecutionScope
impl UnwindSafe for ExecutionScope
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