Enum tauri_utils::config::WixLanguage
source · pub enum WixLanguage {
One(String),
List(Vec<String>),
Localized(HashMap<String, WixLanguageConfig>),
}Expand description
The languages to build using WiX.
Variants§
One(String)
A single language to build, without configuration.
List(Vec<String>)
A list of languages to build, without configuration.
Localized(HashMap<String, WixLanguageConfig>)
A map of languages and its configuration.
Trait Implementations§
source§impl Clone for WixLanguage
impl Clone for WixLanguage
source§fn clone(&self) -> WixLanguage
fn clone(&self) -> WixLanguage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for WixLanguage
impl Debug for WixLanguage
source§impl Default for WixLanguage
impl Default for WixLanguage
source§impl<'de> Deserialize<'de> for WixLanguage
impl<'de> Deserialize<'de> for WixLanguage
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<WixLanguage> for WixLanguage
impl PartialEq<WixLanguage> for WixLanguage
source§fn eq(&self, other: &WixLanguage) -> bool
fn eq(&self, other: &WixLanguage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.