pub enum WrenError {
Compile(String, i32, String),
Runtime(String),
StackTrace(String, i32, String),
}Expand description
Directly internally to report errors
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for WrenError
impl Send for WrenError
impl Sync for WrenError
impl Unpin for WrenError
impl UnwindSafe for WrenError
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