pub trait InstallReporter: Send + Sync {
// Required methods
fn on_install_progress(&self, wheel: &CachedDist);
fn on_install_complete(&self);
}Required Methods§
Sourcefn on_install_progress(&self, wheel: &CachedDist)
fn on_install_progress(&self, wheel: &CachedDist)
Callback to invoke when a dependency is installed.
Sourcefn on_install_complete(&self)
fn on_install_complete(&self)
Callback to invoke when the resolution is complete.