Enum lucas_test::Error
source · [−]#[non_exhaustive]
pub enum Error {
Show 31 variants
Runtime(Error),
CreateWebview(Box<dyn Error + Send>),
CreateWindow,
WindowLabelAlreadyExists(String),
WebviewNotFound,
FailedToSendMessage,
AssetNotFound(String),
Json(Error),
UnknownApi(Option<Error>),
FailedToExecuteApi(Error),
Io(Error),
Base64Decode(DecodeError),
InvalidIcon(Box<dyn Error + Send>),
HttpClientNotInitialized,
ApiNotEnabled(String),
ApiNotAllowlisted(String),
InvalidArgs(&'static str, &'static str, Error),
Setup(Box<dyn Error + Send>),
TauriUpdater(Error),
PluginInitialization(String, String),
SystemTray(Box<dyn Error + Send>),
InvalidUrl(ParseError),
JoinError(Box<dyn Error + Send>),
PathNotAllowed(PathBuf),
NotificationNotAllowed,
UrlNotAllowed(Url),
SidecarNotAllowed(PathBuf),
SidecarNotFound(Box<ShellScopeError>),
ProgramNotAllowed(PathBuf),
IsolationPattern(Error),
InvalidWindowUrl(&'static str),
}Expand description
Runtime errors that can happen inside a Tauri application.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Runtime(Error)
Runtime error.
CreateWebview(Box<dyn Error + Send>)
Failed to create webview.
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(Box<dyn Error + Send>)
Failed to load window icon.
HttpClientNotInitialized
Client with specified ID not found.
ApiNotEnabled(String)
API not enabled by Tauri.
ApiNotAllowlisted(String)
API not whitelisted on tauri.conf.json
InvalidArgs(&'static str, &'static str, Error)
Invalid args when running a command.
Setup(Box<dyn Error + Send>)
Encountered an error in the setup hook,
TauriUpdater(Error)
updater only.Tauri updater error.
PluginInitialization(String, String)
Error initializing plugin.
SystemTray(Box<dyn Error + Send>)
Encountered an error creating the app system tray,
InvalidUrl(ParseError)
A part of the URL is malformed or invalid. This may occur when parsing and combining user-provided URLs and paths.
JoinError(Box<dyn Error + Send>)
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.
IsolationPattern(Error)
An error happened inside the isolation pattern.
InvalidWindowUrl(&'static str)
An invalid window URL was provided. Includes details about the error.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<Box<ScopeError, Global>> for Error
impl From<Box<ScopeError, Global>> for Error
sourcefn from(source: Box<ShellScopeError>) -> Self
fn from(source: Box<ShellScopeError>) -> Self
Performs the conversion.
sourceimpl From<DecodeError> for Error
impl From<DecodeError> for Error
sourcefn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl !Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more