pub struct ExecutionErrorBin {
pub error_type: String,
pub message: String,
pub stack: String,
pub code: String,
}Expand description
Structured error from V8 execution.
Fields§
§error_type: String§message: String§stack: String§code: StringTrait Implementations§
Source§impl Clone for ExecutionErrorBin
impl Clone for ExecutionErrorBin
Source§fn clone(&self) -> ExecutionErrorBin
fn clone(&self) -> ExecutionErrorBin
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 ExecutionErrorBin
impl Debug for ExecutionErrorBin
Source§impl PartialEq for ExecutionErrorBin
impl PartialEq for ExecutionErrorBin
Source§fn eq(&self, other: &ExecutionErrorBin) -> bool
fn eq(&self, other: &ExecutionErrorBin) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionErrorBin
Auto Trait Implementations§
impl Freeze for ExecutionErrorBin
impl RefUnwindSafe for ExecutionErrorBin
impl Send for ExecutionErrorBin
impl Sync for ExecutionErrorBin
impl Unpin for ExecutionErrorBin
impl UnsafeUnpin for ExecutionErrorBin
impl UnwindSafe for ExecutionErrorBin
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