pub struct ScanResult {
pub rust_files: Vec<PathBuf>,
pub warnings: Vec<String>,
}Expand description
Result of directory scanning operation.
Contains the list of discovered Rust files and any warnings encountered during scanning.
Fields§
§rust_files: Vec<PathBuf>List of paths to all discovered .rs files
warnings: Vec<String>Warning messages for any issues encountered (e.g., inaccessible directories)
Auto 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