pub enum WitxError {
Io(PathBuf, Error),
Parse(Error),
Validation(ValidationError),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Error for WitxError
impl Error for WitxError
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()
Source§impl From<ValidationError> for WitxError
impl From<ValidationError> for WitxError
Source§fn from(source: ValidationError) -> Self
fn from(source: ValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WitxError
impl !RefUnwindSafe for WitxError
impl Send for WitxError
impl Sync for WitxError
impl Unpin for WitxError
impl !UnwindSafe for WitxError
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