pub enum ConformanceError {
Io(PathBuf, Error),
Parse(PathBuf, Error),
}Expand description
Errors that can occur when loading conformance files.
Variants§
Trait Implementations§
Source§impl Debug for ConformanceError
impl Debug for ConformanceError
Source§impl Display for ConformanceError
impl Display for ConformanceError
Source§impl Error for ConformanceError
impl Error for ConformanceError
1.30.0§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§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 ConformanceError
impl !RefUnwindSafe for ConformanceError
impl Send for ConformanceError
impl Sync for ConformanceError
impl Unpin for ConformanceError
impl !UnwindSafe for ConformanceError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more