pub enum ConformanceFixtureFileError {
ReadDirectory {
path: String,
source: Error,
},
ReadDirectoryEntry {
path: String,
source: Error,
},
ReadDirectoryEntryType {
path: String,
source: Error,
},
Read {
path: String,
source: Error,
},
Parse {
path: String,
source: Error,
},
Write {
path: String,
source: Error,
},
Serialize {
path: String,
source: Error,
},
Approve {
path: String,
source: ConformanceApprovalError,
},
}Variants§
Trait Implementations§
Source§impl Debug for ConformanceFixtureFileError
impl Debug for ConformanceFixtureFileError
Source§impl Error for ConformanceFixtureFileError
impl Error for ConformanceFixtureFileError
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 ConformanceFixtureFileError
impl !UnwindSafe for ConformanceFixtureFileError
impl Freeze for ConformanceFixtureFileError
impl Send for ConformanceFixtureFileError
impl Sync for ConformanceFixtureFileError
impl Unpin for ConformanceFixtureFileError
impl UnsafeUnpin for ConformanceFixtureFileError
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