Struct kernel::programs::package::Package [] [src]

pub struct Package {
    pub url: URL,
    pub id: String,
    pub name: String,
    pub binary: URL,
    pub icon: BMPFile,
    pub accepts: Vec<String>,
    pub authors: Vec<String>,
    pub descriptions: Vec<String>,
}

A package (_REDOX content serialized)

Fields

url

The URL

id

The ID of the package

name

The name of the package

binary

The binary for the package

icon

The icon for the package

accepts

The accepted extensions

authors

The author(s) of the package

descriptions

The description of the package

Methods

impl Package

fn from_url(url: &URL) -> Box<Self>

Create package from URL