Trait WorkspaceDownstreamExt

Source
pub trait WorkspaceDownstreamExt {
    // Required method
    fn update_downstreams_recursively<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 mut self,
        dep_name: &'life1 str,
        new_version: &'life2 Version,
        visited: &'life3 mut HashSet<String>,
    ) -> Pin<Box<dyn Future<Output = Result<(), WorkspaceError>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             Self: 'async_trait;
}

Required Methods§

Source

fn update_downstreams_recursively<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 mut self, dep_name: &'life1 str, new_version: &'life2 Version, visited: &'life3 mut HashSet<String>, ) -> Pin<Box<dyn Future<Output = Result<(), WorkspaceError>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, Self: 'async_trait,

Implementors§

Source§

impl<P, H> WorkspaceDownstreamExt for Workspace<P, H>
where P: for<'async_trait> From<PathBuf> + for<'async_trait> AsRef<Path> + for<'async_trait> Send + for<'async_trait> Sync + 'async_trait, H: CrateHandleInterface<P> + Bump<Error = CrateError> + Send + Sync,