[][src]Struct panbuild::AbstractManifest

pub struct AbstractManifest {
    pub package_name: String,
    pub package_id: String,
    pub package_version: String,
    pub short_description: String,
    pub description: String,
    pub keywords: Vec<String>,
    pub package_type: PackageType,
    pub release_type: ReleaseType,
    pub architecture: Architecture,
    pub license: License,
    pub main_module: AbstractModule,
    pub depends_on: Vec<AbstractModule>,
    pub permissions: Vec<AbstractPermission>,
    pub executables: Vec<AbstractExecutable>,
}

Generic representation of a build manifest.

Fields

package_name: Stringpackage_id: Stringpackage_version: Stringshort_description: Stringdescription: Stringkeywords: Vec<String>package_type: PackageTyperelease_type: ReleaseTypearchitecture: Architecturelicense: Licensemain_module: AbstractModuledepends_on: Vec<AbstractModule>permissions: Vec<AbstractPermission>executables: Vec<AbstractExecutable>

Trait Implementations

impl Debug for AbstractManifest[src]

impl Default for AbstractManifest[src]

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

impl Iterator for AbstractManifest[src]

type Item = AbstractModule

The type of the elements being iterated over.

impl Serialize for AbstractManifest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.