pub struct ScanResult {
pub files: Vec<FileMetadata>,
pub languages: Vec<Language>,
pub frameworks: Vec<Framework>,
pub source_dirs: Vec<PathBuf>,
pub test_dirs: Vec<PathBuf>,
}Expand description
Result of codebase scanning
Fields§
§files: Vec<FileMetadata>All files found in the codebase
languages: Vec<Language>Languages detected in the codebase
frameworks: Vec<Framework>Frameworks detected in the codebase
source_dirs: Vec<PathBuf>Source directories
test_dirs: Vec<PathBuf>Test directories
Trait Implementations§
Source§impl Clone for ScanResult
impl Clone for ScanResult
Source§fn clone(&self) -> ScanResult
fn clone(&self) -> ScanResult
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 moreAuto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnwindSafe for ScanResult
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