pub enum ErrorImpl {
Message(String),
Rquickjs(Error),
}Expand description
The internal representation of an error.
This enum represents various errors that can occur during JS value serialization or deserialization,
including UTF-8 conversion errors, and errors originating from the rquickjs library.
Variants§
Message(String)
A generic error message
Rquickjs(Error)
An error originating from the rquickjs library.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorImpl
impl !RefUnwindSafe for ErrorImpl
impl Send for ErrorImpl
impl Sync for ErrorImpl
impl Unpin for ErrorImpl
impl !UnwindSafe for ErrorImpl
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