alpm_types

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

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

Aliased Type§

struct PkgDesc { /* private fields */ }