pub enum ImagePackagesError {
NotFound,
Open(OpenError),
Read(ReadError),
Parse(Error),
}
Expand description
An error encountered while loading the images.json manifest.
Variants§
Trait Implementations§
Source§impl Debug for ImagePackagesError
impl Debug for ImagePackagesError
Source§impl Display for ImagePackagesError
impl Display for ImagePackagesError
Source§impl Error for ImagePackagesError
impl Error for ImagePackagesError
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 ImagePackagesError
impl !RefUnwindSafe for ImagePackagesError
impl Send for ImagePackagesError
impl Sync for ImagePackagesError
impl Unpin for ImagePackagesError
impl !UnwindSafe for ImagePackagesError
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