Trait AddToWorkspaceMembers

Source
pub trait AddToWorkspaceMembers<P>
where P: for<'async_trait> From<PathBuf> + for<'async_trait> AsRef<Path> + for<'async_trait> Send + for<'async_trait> Sync + for<'async_trait> Clone + 'static,
{ // Required method fn add_to_workspace_members<'life0, 'life1, 'async_trait>( &'life0 self, new_crate_path: &'life1 P, ) -> Pin<Box<dyn Future<Output = Result<(), WorkspaceError>> + Send + 'async_trait>> where 'life0: 'async_trait, 'life1: 'async_trait, Self: 'async_trait; }

Required Methods§

Source

fn add_to_workspace_members<'life0, 'life1, 'async_trait>( &'life0 self, new_crate_path: &'life1 P, ) -> Pin<Box<dyn Future<Output = Result<(), WorkspaceError>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, Self: 'async_trait,

Implementors§

Source§

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