Struct aur::model::SearchResult[][src]

pub struct SearchResult {
    pub description: Option<String>,
    pub first_submitted: u64,
    pub id: u64,
    pub last_modified: u64,
    pub maintainer: Option<String>,
    pub name: String,
    pub num_votes: u64,
    pub out_of_date: Option<u64>,
    pub package_base: String,
    pub package_base_id: u64,
    pub popularity: f64,
    pub url: Option<String>,
    pub url_path: String,
    pub version: String,
}

A result for a search without additional information metadata.

Fields

A longer description of the package.

When the package was first submitted.

The ID of the package.

When the package was last modified.

The name of the package's maintainer.

The name of the package.

The number of votes that the package has.

When the package was marked as out-of-date.

The name of the base package.

The ID of the base package.

The relative popularity of the package.

URL to the package's project home.

Path to the package's snapshot tar.

The version of the package.

Trait Implementations

impl Clone for SearchResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchResult
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations