pub enum JugarError {
InitializationFailed(String),
RuntimeError(String),
}Expand description
Jugar engine errors
Variants§
Trait Implementations§
Source§impl Clone for JugarError
impl Clone for JugarError
Source§fn clone(&self) -> JugarError
fn clone(&self) -> JugarError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JugarError
impl Debug for JugarError
Source§impl Display for JugarError
impl Display for JugarError
Source§impl Error for JugarError
impl Error for JugarError
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 PartialEq for JugarError
impl PartialEq for JugarError
impl Eq for JugarError
impl StructuralPartialEq for JugarError
Auto Trait Implementations§
impl Freeze for JugarError
impl RefUnwindSafe for JugarError
impl Send for JugarError
impl Sync for JugarError
impl Unpin for JugarError
impl UnwindSafe for JugarError
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