pub struct JavascriptException {
pub name: String,
pub message: String,
}Expand description
JavaScript exception value carried by shared resume packets.
Fields§
§name: StringStable exception name such as TypeError.
message: StringHuman-readable exception message.
Implementations§
Trait Implementations§
Source§impl Clone for JavascriptException
impl Clone for JavascriptException
Source§fn clone(&self) -> JavascriptException
fn clone(&self) -> JavascriptException
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JavascriptException
impl Debug for JavascriptException
Source§impl PartialEq for JavascriptException
impl PartialEq for JavascriptException
impl StructuralPartialEq for JavascriptException
Auto Trait Implementations§
impl Freeze for JavascriptException
impl RefUnwindSafe for JavascriptException
impl Send for JavascriptException
impl Sync for JavascriptException
impl Unpin for JavascriptException
impl UnsafeUnpin for JavascriptException
impl UnwindSafe for JavascriptException
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