pub enum ProbeError {
Io(Error),
Parser(IsoError),
NoIsosFound,
}Expand description
Errors returned during probing.
Variants§
Io(Error)
Underlying I/O failure.
Parser(IsoError)
The wrapped ISO parser raised an error.
NoIsosFound
No .iso files were found under any of the supplied roots.
Reserved for the stricter case “the walk found zero .iso files”
so callers can distinguish an empty stick from a stick full of
broken ISOs — the latter returns Ok(DiscoveryReport) with
populated DiscoveryReport::failed. (#456)
Trait Implementations§
Source§impl Debug for ProbeError
impl Debug for ProbeError
Source§impl Display for ProbeError
impl Display for ProbeError
Source§impl Error for ProbeError
impl Error for ProbeError
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 ProbeError
impl From<Error> for ProbeError
Auto Trait Implementations§
impl Freeze for ProbeError
impl !RefUnwindSafe for ProbeError
impl Send for ProbeError
impl Sync for ProbeError
impl Unpin for ProbeError
impl UnsafeUnpin for ProbeError
impl !UnwindSafe for ProbeError
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