pub struct Analyzer { /* private fields */ }Implementations§
Source§impl Analyzer
impl Analyzer
pub fn new() -> Self
pub async fn analyze_file(&mut self, path: &Path) -> Result<AnalysisResult>
pub async fn quick_scan(&self, path: &Path) -> Result<AnalysisResult>
pub async fn scan_directory(&self, path: &Path) -> Result<Vec<AnalysisResult>>
pub async fn analyze_directory( &mut self, path: &Path, ) -> Result<Vec<AnalysisResult>>
Auto Trait Implementations§
impl Freeze for Analyzer
impl RefUnwindSafe for Analyzer
impl Send for Analyzer
impl Sync for Analyzer
impl Unpin for Analyzer
impl UnsafeUnpin for Analyzer
impl UnwindSafe for Analyzer
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