pub enum ImageError {
InvalidFilename(Box<OsStr>),
NotFound(Box<OsStr>),
NotADirectory(Box<OsStr>),
IsADirectory(Box<OsStr>),
IsNotRegular(Box<OsStr>),
}Expand description
Errors that can occur when working with filesystem images.
Variants§
InvalidFilename(Box<OsStr>)
The filename contains invalid components (e.g., “..”, “.”, or Windows prefixes).
NotFound(Box<OsStr>)
The specified directory entry does not exist.
NotADirectory(Box<OsStr>)
The entry exists but is not a directory when a directory was expected.
IsADirectory(Box<OsStr>)
The entry is a directory when a non-directory was expected.
IsNotRegular(Box<OsStr>)
The entry exists but is not a regular file when a regular file was expected.
Trait Implementations§
Source§impl Debug for ImageError
impl Debug for ImageError
Source§impl Display for ImageError
impl Display for ImageError
Source§impl Error for ImageError
impl Error for ImageError
1.30.0 · 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 Freeze for ImageError
impl RefUnwindSafe for ImageError
impl Send for ImageError
impl Sync for ImageError
impl Unpin for ImageError
impl UnwindSafe for ImageError
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