pub struct NodeProjectFinder { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Debug for NodeProjectFinder
impl Debug for NodeProjectFinder
Source§impl Default for NodeProjectFinder
impl Default for NodeProjectFinder
Source§impl ProjectFinder for NodeProjectFinder
impl ProjectFinder for NodeProjectFinder
fn projects(&self) -> Vec<&Project>
fn projects_mut(&mut self) -> Vec<&mut Project>
fn project_files(&self) -> &[&str]
fn visit<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
path: &'life1 Path,
relative_path: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn check_changed(&mut self, path: &Path) -> Result<(), Error>
fn test<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Auto Trait Implementations§
impl Freeze for NodeProjectFinder
impl !RefUnwindSafe for NodeProjectFinder
impl Send for NodeProjectFinder
impl Sync for NodeProjectFinder
impl Unpin for NodeProjectFinder
impl !UnwindSafe for NodeProjectFinder
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