[][src]Struct uvm_core::unity::Module

pub struct Module {
    pub id: String,
    pub sync: Option<String>,
    pub parent: Option<String>,
    pub name: String,
    pub description: String,
    pub download_url: String,
    pub category: Category,
    pub installed_size: u64,
    pub download_size: u64,
    pub visible: bool,
    pub selected: bool,
    pub destination: Option<String>,
    pub rename_to: Option<String>,
    pub rename_from: Option<String>,
    pub checksum: Option<MD5>,
    pub eula_url_1: Option<String>,
    pub eula_label_1: Option<String>,
    pub eula_message: Option<String>,
}

Fields

id: Stringsync: Option<String>parent: Option<String>name: Stringdescription: Stringdownload_url: Stringcategory: Categoryinstalled_size: u64download_size: u64visible: boolselected: booldestination: Option<String>rename_to: Option<String>rename_from: Option<String>checksum: Option<MD5>eula_url_1: Option<String>eula_label_1: Option<String>eula_message: Option<String>

Trait Implementations

impl Eq for Module[src]

impl Default for Module[src]

impl PartialOrd<Module> for Module[src]

impl PartialEq<Module> for Module[src]

impl Ord for Module[src]

impl<'_> From<((Component, ComponentData), &'_ Version)> for Module[src]

impl Hash for Module[src]

impl Debug for Module[src]

impl Serialize for Module[src]

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

Auto Trait Implementations

impl Sync for Module

impl Send for Module

impl Unpin for Module

impl UnwindSafe for Module

impl RefUnwindSafe for Module

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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