Enum lucas_test::updater::Error
source · [−]#[non_exhaustive]
pub enum Error {
}updater only.Expand description
All errors that can occur while running the updater.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
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.
Utf8(Utf8Error)
UTF8 Errors in signature.
TauriApi(Error)
Tauri utils, mainly extract and file move.
Network(String)
Network error.
RemoteMetadata(String)
Metadata (JSON) error.
Builder(String)
Error building updater.
Extract(String)
Error building updater.
UnsupportedPlatform
Updater is not supported for current operating system or platform.
MissingUpdaterSignature
Public key found in tauri.conf.json but no signature announced remotely.
UpToDate
Triggered when there is NO error and the two versions are equals. On client side, it’s important to catch this 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<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