#[non_exhaustive]
pub enum Error {
Show 29 variants Runtime(Error), CreateWindow, WindowLabelAlreadyExists(String), WebviewNotFound, FailedToSendMessage, AssetNotFound(String), Json(Error), UnknownApi(Option<Error>), FailedToExecuteApi(Error), Io(Error), Base64Decode(DecodeError), InvalidIcon(Error), HttpClientNotInitialized, ApiNotAllowlisted(String), InvalidArgs(&'static str, &'static strError), Setup(SetupError), TauriUpdater(Error), PluginInitialization(StringString), InvalidUrl(ParseError), JoinError(JoinError), PathNotAllowed(PathBuf), NotificationNotAllowed, UrlNotAllowed(Url), SidecarNotAllowed(PathBuf), SidecarNotFound(Box<ShellScopeError>), ProgramNotAllowed(PathBuf), InvalidWindowUrl(&'static str), GlobPattern(PatternError), PngDecode(DecodingError),
}
Expand description

Runtime errors that can happen inside a Tauri application.

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.

Runtime(Error)

Runtime error.

CreateWindow

Failed to create window.

WindowLabelAlreadyExists(String)

Window label must be unique.

WebviewNotFound

Can’t access webview dispatcher because the webview was closed or not found.

FailedToSendMessage

Failed to send message to webview.

AssetNotFound(String)

Embedded asset not found.

Json(Error)

Failed to serialize/deserialize.

UnknownApi(Option<Error>)

Unknown API type.

FailedToExecuteApi(Error)

Failed to execute tauri API.

Io(Error)

IO error.

Base64Decode(DecodeError)

Failed to decode base64.

InvalidIcon(Error)

Failed to load window icon.

HttpClientNotInitialized

Client with specified ID not found.

ApiNotAllowlisted(String)

API not whitelisted on tauri.conf.json

InvalidArgs(&'static str, &'static strError)

Invalid args when running a command.

Setup(SetupError)

Encountered an error in the setup hook,

TauriUpdater(Error)

Available on crate feature updater only.

Tauri updater error.

PluginInitialization(StringString)

Error initializing plugin.

InvalidUrl(ParseError)

A part of the URL is malformed or invalid. This may occur when parsing and combining user-provided URLs and paths.

JoinError(JoinError)

Task join error.

PathNotAllowed(PathBuf)

Path not allowed by the scope.

NotificationNotAllowed

The user did not allow sending notifications.

UrlNotAllowed(Url)

URL not allowed by the scope.

SidecarNotAllowed(PathBuf)

Sidecar not allowed by the configuration.

SidecarNotFound(Box<ShellScopeError>)

Sidecar was not found by the configuration.

ProgramNotAllowed(PathBuf)

Program not allowed by the scope.

InvalidWindowUrl(&'static str)

An invalid window URL was provided. Includes details about the error.

GlobPattern(PatternError)

Invalid glob pattern.

PngDecode(DecodingError)

Error decoding PNG image.

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.

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.