#[non_exhaustive]pub enum TetraError {
PlatformError(String),
FailedToLoadAsset {
reason: Error,
path: PathBuf,
},
InvalidColor,
InvalidTexture(ImageError),
InvalidShader(String),
InvalidFont,
InvalidSound(DecoderError),
NotEnoughData {
expected: usize,
actual: usize,
},
NoAudioDevice,
FailedToChangeDisplayMode(String),
TessellationError(TessellationError),
}
Expand description
The types of error that can occur in a Tetra game.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
PlatformError(String)
Returned when the underlying platform returns an unexpected error. This usually isn’t something your game can reasonably be expected to recover from.
FailedToLoadAsset
Returned when your game fails to load an asset. This is usually caused by an incorrect file path, or some form of permission issues.
Fields
InvalidColor
Returned when a color is invalid.
InvalidTexture(ImageError)
Returned when a texture’s data is invalid.
InvalidShader(String)
Returned when a shader fails to compile.
InvalidFont
Returned when a font could not be read.
InvalidSound(DecoderError)
Returned when a sound cannot be decoded.
NotEnoughData
Returned when not enough data is provided to fill a buffer. This may happen if you’re creating a texture from raw data and you don’t provide enough data.
Fields
NoAudioDevice
Returned when trying to play back audio without an available device.
FailedToChangeDisplayMode(String)
Returned when your game tried to change the display settings (e.g. fullscreen, vsync) but was unable to do so.
TessellationError(TessellationError)
Returned when a shape cannot be tessellated.
Trait Implementations§
Source§impl Debug for TetraError
impl Debug for TetraError
Source§impl Display for TetraError
impl Display for TetraError
Source§impl Error for TetraError
impl Error for TetraError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Auto Trait Implementations§
impl Freeze for TetraError
impl !RefUnwindSafe for TetraError
impl Send for TetraError
impl Sync for TetraError
impl Unpin for TetraError
impl !UnwindSafe for TetraError
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more