alpm_types::pkgType Alias PackageDescription
Source pub type PackageDescription = String;
Expand description
Description of a package
This is a type alias for String
.
§Examples
use alpm_types::{Error, PackageDescription};
let desc: PackageDescription = "A simple package".to_string();
struct PackageDescription { }