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