[][src]Struct aur_client::aur::Package

pub struct Package {
    pub ID: i32,
    pub Name: String,
    pub PackageBaseID: i32,
    pub PackageBase: Option<String>,
    pub Version: String,
    pub Description: Option<String>,
    pub URL: Option<String>,
    pub NumVotes: i32,
    pub Popularity: f64,
    pub OutOfDate: Option<i32>,
    pub Maintainer: Option<String>,
    pub FirstSubmitted: i32,
    pub LastModified: i32,
    pub URLPath: String,
    pub Depends: Option<Vec<String>>,
    pub MakeDepends: Option<Vec<String>>,
    pub CheckDepends: Option<Vec<String>>,
    pub Conflicts: Option<Vec<String>>,
    pub Provides: Option<Vec<String>>,
    pub Replaces: Option<Vec<String>>,
    pub OptDepends: Option<Vec<String>>,
    pub Groups: Option<Vec<String>>,
    pub License: Option<Vec<String>>,
    pub Keywords: Option<Vec<String>>,
}

Fields

ID: i32Name: StringPackageBaseID: i32PackageBase: Option<String>Version: StringDescription: Option<String>URL: Option<String>NumVotes: i32Popularity: f64OutOfDate: Option<i32>Maintainer: Option<String>FirstSubmitted: i32LastModified: i32URLPath: StringDepends: Option<Vec<String>>MakeDepends: Option<Vec<String>>CheckDepends: Option<Vec<String>>Conflicts: Option<Vec<String>>Provides: Option<Vec<String>>Replaces: Option<Vec<String>>OptDepends: Option<Vec<String>>Groups: Option<Vec<String>>License: Option<Vec<String>>Keywords: Option<Vec<String>>

Trait Implementations

impl<'de> Deserialize<'de> for Package[src]

Auto Trait Implementations

impl Send for Package

impl Sync for Package

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T