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§
Sourcefn 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,
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.