pub enum ScanFailureKind {
IoError,
MountFailed,
NoBootEntries,
}Expand description
Structured classification of why an ISO failed to yield boot
entries. A 1-to-1 map from the per-file variants of IsoError.
Variants§
IoError
Filesystem error reading the ISO or its mount point.
MountFailed
Loop-mounting the ISO failed (wrong format, permission denied, no loop device available).
NoBootEntries
Mount succeeded but no recognized boot entries were found on the ISO’s filesystem.
Trait Implementations§
Source§impl Clone for ScanFailureKind
impl Clone for ScanFailureKind
Source§fn clone(&self) -> ScanFailureKind
fn clone(&self) -> ScanFailureKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScanFailureKind
impl Debug for ScanFailureKind
Source§impl PartialEq for ScanFailureKind
impl PartialEq for ScanFailureKind
impl Copy for ScanFailureKind
impl Eq for ScanFailureKind
impl StructuralPartialEq for ScanFailureKind
Auto Trait Implementations§
impl Freeze for ScanFailureKind
impl RefUnwindSafe for ScanFailureKind
impl Send for ScanFailureKind
impl Sync for ScanFailureKind
impl Unpin for ScanFailureKind
impl UnsafeUnpin for ScanFailureKind
impl UnwindSafe for ScanFailureKind
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