InstallReporter

Trait InstallReporter 

Source
pub trait InstallReporter: Send + Sync {
    // Required methods
    fn on_install_progress(&self, wheel: &CachedDist);
    fn on_install_complete(&self);
}

Required Methods§

Source

fn on_install_progress(&self, wheel: &CachedDist)

Callback to invoke when a dependency is installed.

Source

fn on_install_complete(&self)

Callback to invoke when the resolution is complete.

Implementors§