mirror of
https://github.com/tauri-apps/tauri-docs.git
synced 2026-01-31 00:35:16 +01:00
* chore: moving files from 'website' folder * chore(readme): Removed 'cd website' line * chore: Moving netlify.toml * chore(conflicts)
3.0 KiB
3.0 KiB
title
| title |
|---|
| enum.ErrorKind |
Enum tauri_utils::ErrorKind
pub enum ErrorKind {
Io(Error),
Msg(String),
// some variants omitted
}
The kind of an error.
Variants
Io(Error)
Msg(String)
A convenient variant for String.
Methods
impl ErrorKind
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
impl Debug for ErrorKind
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for ErrorKind
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> From<&'a str> for ErrorKind
fn from(s: &'a str) -> Self
Performs the conversion.
impl From<Error> for ErrorKind
fn from(e: Error) -> Self
Performs the conversion.
impl From<ErrorKind> for Error
fn from(e: ErrorKind) -> Self
Performs the conversion.
impl From<String> for ErrorKind
fn from(s: String) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl !UnwindSafe for ErrorKind
Blanket Implementations
impl<T> Any for T where T: 'static + ?Sized,
fn type_id(&self) -> TypeId
Gets the TypeId of self. Read more
impl<T> Borrow<T> for T where T: ?Sized,
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut<T> for T where T: ?Sized,
fn borrow_mut(&mut self) -> &mutT
Mutably borrows from an owned value. Read more
impl<T> From<T> for T
fn from(t: T) -> T
Performs the conversion.
impl<T, U> Into<U> for T where U: From<T>,
fn into(self) -> U
Performs the conversion.
impl<T> ToString for T where T: Display + ?Sized,
default fn to_string(&self) -> String
Converts the given value to a String. Read more
impl<T, U> TryFrom<U> for T where U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
Performs the conversion.
impl<T, U> TryInto<U> for T where U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.