pub enum QaLibError {
Json(Error),
NeedsInteraction,
Component(String),
InvalidPatch(String),
MissingField(String),
Validation(String),
}Variants§
Json(Error)
NeedsInteraction
Component(String)
InvalidPatch(String)
MissingField(String)
Validation(String)
Trait Implementations§
Source§impl Debug for QaLibError
impl Debug for QaLibError
Source§impl Display for QaLibError
impl Display for QaLibError
Source§impl Error for QaLibError
impl Error for QaLibError
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 Freeze for QaLibError
impl !RefUnwindSafe for QaLibError
impl Send for QaLibError
impl Sync for QaLibError
impl Unpin for QaLibError
impl UnsafeUnpin for QaLibError
impl !UnwindSafe for QaLibError
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