Struct tauri_utils::config::UpdaterConfig
source · pub struct UpdaterConfig {
pub active: bool,
pub pubkey: String,
pub windows: UpdaterWindowsConfig,
}
Expand description
The Updater configuration object.
Fields§
§active: bool
Whether the updater is active or not.
pubkey: String
Signature public key.
windows: UpdaterWindowsConfig
The Windows configuration for the updater.
Trait Implementations§
source§impl Clone for UpdaterConfig
impl Clone for UpdaterConfig
source§fn clone(&self) -> UpdaterConfig
fn clone(&self) -> UpdaterConfig
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 UpdaterConfig
impl Debug for UpdaterConfig
source§impl Default for UpdaterConfig
impl Default for UpdaterConfig
source§impl<'de> Deserialize<'de> for UpdaterConfig
impl<'de> Deserialize<'de> for UpdaterConfig
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 UpdaterConfig
impl PartialEq for UpdaterConfig
source§fn eq(&self, other: &UpdaterConfig) -> bool
fn eq(&self, other: &UpdaterConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for UpdaterConfig
impl Serialize for UpdaterConfig
impl Eq for UpdaterConfig
impl StructuralEq for UpdaterConfig
impl StructuralPartialEq for UpdaterConfig
Auto Trait Implementations§
impl RefUnwindSafe for UpdaterConfig
impl Send for UpdaterConfig
impl Sync for UpdaterConfig
impl Unpin for UpdaterConfig
impl UnwindSafe for UpdaterConfig
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.