#[non_exhaustive]
pub enum Error {
Show 19 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), TempDirNotOnSameMountPoint,
}
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.

TempDirNotOnSameMountPoint

Temp dir is not on same mount mount. This prevents our updater to rename the AppImage to a temp file.

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. 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

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.

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.