Trait install_framework_core::interface::PostUninstall[][src]

pub trait PostUninstall: Send {
    fn post_uninstall(
        &mut self,
        cache: &Path,
        content_dir: &Path,
        bin_dir: &Path
    ); }

Represents a custom post uninstall step

Required methods

fn post_uninstall(&mut self, cache: &Path, content_dir: &Path, bin_dir: &Path)[src]

Called after all uninstallations have been performed (only if a PostInstall has been defined in InstallerBuilder)

Arguments

  • cache - access to the cache path
  • content_dir - access to the content directory of the installed application
  • bin_dir - access to the binary directory (directory which is present in PATH when one or more AddToPath rules are present)
Loading content...

Implementors

Loading content...