Trait BuildWorkspaceTree

Source
pub trait BuildWorkspaceTree {
    // Required method
    fn build_workspace_tree<'life0, 'async_trait>(
        &'life0 self,
        levels: usize,
        verbose: bool,
    ) -> Pin<Box<dyn Future<Output = Result<WorkspaceDependencyTree, WorkspaceError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn build_workspace_tree<'life0, 'async_trait>( &'life0 self, levels: usize, verbose: bool, ) -> Pin<Box<dyn Future<Output = Result<WorkspaceDependencyTree, WorkspaceError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Build the workspace dependency tree up to levels levels deep, optionally toggling “verbose,” or ignoring it as desired.

Implementations on Foreign Types§

Source§

impl<P, H> BuildWorkspaceTree for Workspace<P, H>
where P: From<PathBuf> + AsRef<Path> + Send + Sync + 'static, H: CrateHandleInterface<P> + Send + Sync + 'static,

Source§

fn build_workspace_tree<'life0, 'async_trait>( &'life0 self, levels: usize, verbose: bool, ) -> Pin<Box<dyn Future<Output = Result<WorkspaceDependencyTree, WorkspaceError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§