Skip to main content

Target

Trait Target 

Source
pub trait Target: Send + Sync {
    // Required methods
    fn name(&self) -> &'static str;
    fn display_name(&self) -> &'static str;
    fn detect_paths(&self, home: &Path) -> Vec<PathBuf>;
    fn install(&self, home: &Path) -> Result<InstallOutcome, String>;

    // Provided method
    fn hook_format(&self) -> Option<&dyn HookFormat> { ... }
}

Required Methods§

Source

fn name(&self) -> &'static str

Source

fn display_name(&self) -> &'static str

Source

fn detect_paths(&self, home: &Path) -> Vec<PathBuf>

Source

fn install(&self, home: &Path) -> Result<InstallOutcome, String>

Provided Methods§

Implementors§