alpm_types::pkg

Type 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};

// Create a PackageDescription
let desc: PackageDescription = "A simple package".to_string();

Aliased Type§

struct PackageDescription { /* private fields */ }