pub enum ImageError {
EmptyData,
InvalidPixelAlignment(usize),
JpgDecode(JpgDecodeErrors),
PathNotFound(PathBuf),
PngDecode(PngDecodeErrors),
UnsupportedFormat,
}
Expand description
The possible errors that can occur when loading or creating an image texture.
Variants§
EmptyData
The image data buffer was empty or otherwise invalid.
InvalidPixelAlignment(usize)
The image’s pixel data was not aligned to 3-byte or 4-byte pixels. The unsupported alignment value (in bytes) is included.
JpgDecode(JpgDecodeErrors)
The image data could not be decoded as a JPEG.
PathNotFound(PathBuf)
The image file at the given resource path could not be found.
PngDecode(PngDecodeErrors)
The image data could not be decoded as a PNG.
UnsupportedFormat
The image data was in an unsupported format. Currently, only JPEG and PNG are supported.
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()
Source§impl From<PngDecodeErrors> for ImageError
impl From<PngDecodeErrors> for ImageError
Source§fn from(value: PngDecodeErrors) -> Self
fn from(value: PngDecodeErrors) -> Self
Converts to this type from the input type.
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> ActionTrait for T
impl<T> ActionTrait for T
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