pub enum X86Error {
Io {
path: PathBuf,
source: Error,
},
InvalidImage(String),
InvalidState(String),
UnsupportedFormat(String),
RemoteDisabled,
Remote {
url: String,
message: String,
},
Serialization(Error),
BackendUnavailable(String),
}Variants§
Io
InvalidImage(String)
InvalidState(String)
UnsupportedFormat(String)
RemoteDisabled
Remote
Serialization(Error)
Trait Implementations§
Source§impl Error for X86Error
impl Error for X86Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for X86Error
impl !UnwindSafe for X86Error
impl Freeze for X86Error
impl Send for X86Error
impl Sync for X86Error
impl Unpin for X86Error
impl UnsafeUnpin for X86Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more