pub enum BaselineError {
Missing(PathBuf),
Invalid {
path: Option<PathBuf>,
message: String,
},
Io {
path: PathBuf,
source: Error,
},
Mismatch(BaselineDiff),
}Expand description
Errors from loading, parsing, checking, or updating a baseline.
Variants§
Missing(PathBuf)
Baseline file does not exist.
Invalid
Baseline exists but is not a valid document.
Io
Filesystem failure during load/update.
Mismatch(BaselineDiff)
Actual structure does not match the expected baseline.
Trait Implementations§
Source§impl Debug for BaselineError
impl Debug for BaselineError
Source§impl Display for BaselineError
impl Display for BaselineError
Source§impl Error for BaselineError
impl Error for BaselineError
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 BaselineError
impl !UnwindSafe for BaselineError
impl Freeze for BaselineError
impl Send for BaselineError
impl Sync for BaselineError
impl Unpin for BaselineError
impl UnsafeUnpin for BaselineError
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