pub enum WirdigenError {
IOError(Error),
SerdeJsonError(Error),
RegexError(Error),
JSONSchemaCompilation(String),
}Variants§
IOError(Error)
Error inherited from std::io::Error
SerdeJsonError(Error)
Error inherited from serde_json::Error
RegexError(Error)
Error inherited from regex::Error
JSONSchemaCompilation(String)
String descripton of error returned by jsonschema::ValidationError
Trait Implementations§
Source§impl Debug for WirdigenError
impl Debug for WirdigenError
Source§impl Display for WirdigenError
impl Display for WirdigenError
Source§impl Error for WirdigenError
impl Error for WirdigenError
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<Error> for WirdigenError
impl From<Error> for WirdigenError
Source§impl From<Error> for WirdigenError
impl From<Error> for WirdigenError
Auto Trait Implementations§
impl !RefUnwindSafe for WirdigenError
impl !UnwindSafe for WirdigenError
impl Freeze for WirdigenError
impl Send for WirdigenError
impl Sync for WirdigenError
impl Unpin for WirdigenError
impl UnsafeUnpin for WirdigenError
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