Enum pix_engine::error::Error
source · [−]#[non_exhaustive]
pub enum Error {
InvalidTexture(TextureId),
InvalidWindow(WindowId),
ParseColorError,
InvalidColorSlice,
InvalidImage {
width: u32,
height: u32,
size: usize,
format: PixelFormat,
},
UnsupportedImageFormat {
bit_depth: BitDepth,
color_type: ColorType,
},
UnsupportedFileType(Option<OsString>),
Renderer(String),
Io(Error),
Other(Error),
}
Expand description
The error type for PixEngine
operations.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InvalidTexture(TextureId)
Invalid Texture ID. Texture either doesn’t exist or was deleted.
InvalidWindow(WindowId)
Invalid Window ID. Window either doesn’t exist or was closed.
ParseColorError
Hexadecimal Color string parsing error. String doesn’t match any of 3
, 4
, 6
, or 8
digit hexadecimal (radix 16
) values with a leading #
character.
InvalidColorSlice
Invalid Color slice. Slice length is not in the range 1..=4
.
InvalidImage
Fields
width: u32
Image
width.
height: u32
Image
height.
size: usize
Size in bytes.
format: PixelFormat
Image
format.
Invalid Image. Image
data does not match it’s dimensions based on PixelFormat
.
UnsupportedImageFormat
Unsupported Image format.
UnsupportedFileType(Option<OsString>)
Unsupported file type.
Renderer(String)
Graphics renderer error.
Io(Error)
I/O errors.
Other(Error)
Other, unspecified errors.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more