Enum tauri_utils::config::BundleType
source · pub enum BundleType {
Deb,
AppImage,
Msi,
App,
Dmg,
Updater,
}Expand description
A bundle referenced by tauri-bundler.
Variants§
Deb
The debian bundle (.deb).
AppImage
The AppImage bundle (.appimage).
Msi
The Microsoft Installer bundle (.msi).
App
The macOS application bundle (.app).
Dmg
The Apple Disk Image bundle (.dmg).
Updater
The Tauri updater bundle.
Trait Implementations§
source§impl Clone for BundleType
impl Clone for BundleType
source§fn clone(&self) -> BundleType
fn clone(&self) -> BundleType
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 BundleType
impl Debug for BundleType
source§impl<'de> Deserialize<'de> for BundleType
impl<'de> Deserialize<'de> for BundleType
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 Display for BundleType
impl Display for BundleType
source§impl PartialEq<BundleType> for BundleType
impl PartialEq<BundleType> for BundleType
source§fn eq(&self, other: &BundleType) -> bool
fn eq(&self, other: &BundleType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.