[][src]Struct rpmrepo::modules::ModuleMDData

pub struct ModuleMDData {
    pub name: String,
    pub stream: String,
    pub version: u64,
    pub context: String,
    pub arch: String,
    pub summary: Option<String>,
    pub description: Option<String>,
    pub license: License,
    pub dependencies: Vec<Depencency>,
    pub profiles: Option<Profiles>,
    pub api: Option<Rpms<Vec<String>>>,
    pub components: Option<Rpms<HashMap<String, Component>>>,
    pub artifacts: Option<Rpms<Vec<String>>>,
}

Fields

name: Stringstream: Stringversion: u64context: Stringarch: Stringsummary: Option<String>description: Option<String>license: Licensedependencies: Vec<Depencency>profiles: Option<Profiles>api: Option<Rpms<Vec<String>>>components: Option<Rpms<HashMap<String, Component>>>artifacts: Option<Rpms<Vec<String>>>

Trait Implementations

impl Debug for ModuleMDData[src]

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

impl Serialize for ModuleMDData[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.