Struct tauri_utils::config::WixLanguageConfig
source · pub struct WixLanguageConfig {
pub locale_path: Option<String>,
}
Expand description
Configuration for a target language for the WiX build.
Fields§
§locale_path: Option<String>
The path to a locale (.wxl
) file. See https://wixtoolset.org/documentation/manual/v3/howtos/ui_and_localization/build_a_localized_version.html.
Trait Implementations§
source§impl Clone for WixLanguageConfig
impl Clone for WixLanguageConfig
source§fn clone(&self) -> WixLanguageConfig
fn clone(&self) -> WixLanguageConfig
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 WixLanguageConfig
impl Debug for WixLanguageConfig
source§impl<'de> Deserialize<'de> for WixLanguageConfig
impl<'de> Deserialize<'de> for WixLanguageConfig
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 for WixLanguageConfig
impl PartialEq for WixLanguageConfig
source§fn eq(&self, other: &WixLanguageConfig) -> bool
fn eq(&self, other: &WixLanguageConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WixLanguageConfig
impl Serialize for WixLanguageConfig
impl Eq for WixLanguageConfig
impl StructuralEq for WixLanguageConfig
impl StructuralPartialEq for WixLanguageConfig
Auto Trait Implementations§
impl RefUnwindSafe for WixLanguageConfig
impl Send for WixLanguageConfig
impl Sync for WixLanguageConfig
impl Unpin for WixLanguageConfig
impl UnwindSafe for WixLanguageConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.