[][src]Struct uvm_core::unity::IniData

pub struct IniData {
    pub title: String,
    pub description: String,
    pub url: String,
    pub download_url: Option<Url>,
    pub size: u64,
    pub installedsize: u64,
    pub md5: Option<MD5>,
    pub cmd: Option<String>,
    pub hidden: bool,
    pub eula_url_1: Option<String>,
    pub eula_label_1: Option<String>,
    pub eula_message: Option<String>,
    pub sync: Option<Component>,
    pub other: HashMap<String, String>,
}

Fields

title: Stringdescription: Stringurl: Stringdownload_url: Option<Url>size: u64installedsize: u64md5: Option<MD5>cmd: Option<String>hidden: booleula_url_1: Option<String>eula_label_1: Option<String>eula_message: Option<String>sync: Option<Component>other: HashMap<String, String>

Trait Implementations

impl Debug for IniData[src]

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

impl Display for IniData[src]

Auto Trait Implementations

impl RefUnwindSafe for IniData

impl Send for IniData

impl Sync for IniData

impl Unpin for IniData

impl UnwindSafe for IniData

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: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,