[][src]Struct panbuild::AbstractManifest

pub struct AbstractManifest {
    pub path: String,
    pub format: ManifestFormat,
    pub package_name: String,
    pub package_id: String,
    pub package_version: String,
    pub depends_on: Vec<AbstractModule>,
    pub flatpak_manifest: Option<FlatpakManifest>,
    pub debian_manifest: Option<DebianManifest>,
    pub snap_manifest: Option<SnapcraftManifest>,
}

Generic representation of a build manifest.

Fields

path: Stringformat: ManifestFormatpackage_name: Stringpackage_id: Stringpackage_version: Stringdepends_on: Vec<AbstractModule>flatpak_manifest: Option<FlatpakManifest>debian_manifest: Option<DebianManifest>snap_manifest: Option<SnapcraftManifest>

Trait Implementations

impl Debug for AbstractManifest[src]

impl Default for AbstractManifest[src]

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

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<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.