Enum tauri_utils::config::BundleType
source · pub enum BundleType {
Deb,
Rpm,
AppImage,
Msi,
Nsis,
App,
Dmg,
Updater,
}
Expand description
A bundle referenced by tauri-bundler.
Variants§
Deb
The debian bundle (.deb).
Rpm
The RPM bundle (.rpm).
AppImage
The AppImage bundle (.appimage).
Msi
The Microsoft Installer bundle (.msi).
Nsis
The NSIS bundle (.exe).
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 for BundleType
impl PartialEq for BundleType
source§impl Serialize for BundleType
impl Serialize for BundleType
impl Eq for BundleType
impl StructuralPartialEq for BundleType
Auto Trait Implementations§
impl Freeze for BundleType
impl RefUnwindSafe for BundleType
impl Send for BundleType
impl Sync for BundleType
impl Unpin for BundleType
impl UnwindSafe for BundleType
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.