pub enum GameError {
Database(GameDatabaseError),
Resource(GameResourceError),
Unexpected {
msg: String,
source: Box<dyn Error>,
},
}Variants§
Implementations§
Source§impl GameError
impl GameError
pub fn unexpected(error: Box<dyn Error>) -> Self
pub fn as_resource_error(&self) -> Option<&GameResourceError>
Trait Implementations§
Source§impl Error for GameError
impl Error for GameError
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<GameDatabaseError> for GameError
impl From<GameDatabaseError> for GameError
Source§fn from(source: GameDatabaseError) -> Self
fn from(source: GameDatabaseError) -> Self
Converts to this type from the input type.
Source§impl From<GameResourceError> for GameError
impl From<GameResourceError> for GameError
Source§fn from(source: GameResourceError) -> Self
fn from(source: GameResourceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GameError
impl !RefUnwindSafe for GameError
impl !Send for GameError
impl !Sync for GameError
impl Unpin for GameError
impl !UnwindSafe for GameError
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
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self to an expression for Diesel’s query builder. Read more