pub type Changelog = RelativePath;Expand description
The relative path to a changelog file that may be included in a package
This is a type alias for RelativePath
§Examples
use std::str::FromStr;
use alpm_types::{Error, Changelog};
// Create Changelog from &str and format it
assert_eq!(
"changelog.md",
Changelog::from_str("changelog.md")?.to_string()
);Aliased Type§
pub struct Changelog(PathBuf);Tuple Fields§
§0: PathBuf