#[non_exhaustive]
pub enum Error {
Show 18 variants Io(Error), Semver(Error), SerdeJson(Error), Minisign(Error), Base64(DecodeError), SignatureUtf8(String), TauriApi(Error), Network(String), ReleaseNotFound, Builder(String), Extract(String), UnsupportedLinuxPackage, UnsupportedOs, UnsupportedArch, TargetNotFound(String), UpToDate, InvalidResponseType(&'static str, &'static strValue), Http(Error),
}
Available on crate feature updater only.
Expand description

All errors that can occur while running the updater.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Io(Error)

IO Errors.

Semver(Error)

Semver Errors.

SerdeJson(Error)

JSON (Serde) Errors.

Minisign(Error)

Minisign is used for signature validation.

Base64(DecodeError)

Error with Minisign base64 decoding.

SignatureUtf8(String)

UTF8 Errors in signature.

TauriApi(Error)

Tauri utils, mainly extract and file move.

Network(String)

Network error.

ReleaseNotFound

Could not fetch a valid response from the server.

Builder(String)

Error building updater.

Extract(String)

Error building updater.

UnsupportedLinuxPackage

Updater cannot be executed on this Linux package. Currently the updater is enabled only on AppImages.

UnsupportedOs

Operating system is not supported.

UnsupportedArch

Unsupported app architecture.

TargetNotFound(String)

The platform was not found on the updater JSON response.

UpToDate

Triggered when there is NO error and the two versions are equals. On client side, it’s important to catch this error.

InvalidResponseType(&'static str, &'static strValue)

The updater responded with an invalid signature type.

Http(Error)

HTTP error.

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.