Type Alias Install

Source
pub type Install = RelativePath;
Expand description

A special install script that is to be included in the package

This is a type alias for RelativePath`

§Examples

use std::str::FromStr;

use alpm_types::{Error, Install};

// Create Install from &str and format it
assert_eq!(
    "scripts/setup.install",
    Install::from_str("scripts/setup.install")?.to_string()
);

Aliased Type§

struct Install(PathBuf);

Fields§

§0: PathBuf