pub struct ScriptFailedToParseEventParams {Show 17 fields
pub script_id: ScriptId,
pub url: String,
pub start_line: JsUInt,
pub start_column: JsUInt,
pub end_line: JsUInt,
pub end_column: JsUInt,
pub execution_context_id: ExecutionContextId,
pub hash: String,
pub build_id: String,
pub source_map_url: Option<String>,
pub has_source_url: Option<bool>,
pub is_module: Option<bool>,
pub length: Option<JsUInt>,
pub stack_trace: Option<StackTrace>,
pub code_offset: Option<JsUInt>,
pub script_language: Option<ScriptLanguage>,
pub embedder_name: Option<String>,
}Fields§
§script_id: ScriptId§url: String§start_line: JsUInt§start_column: JsUInt§end_line: JsUInt§end_column: JsUInt§execution_context_id: ExecutionContextId§hash: String§build_id: String§source_map_url: Option<String>§has_source_url: Option<bool>§is_module: Option<bool>§length: Option<JsUInt>§stack_trace: Option<StackTrace>§code_offset: Option<JsUInt>§script_language: Option<ScriptLanguage>§embedder_name: Option<String>Trait Implementations§
Source§impl Clone for ScriptFailedToParseEventParams
impl Clone for ScriptFailedToParseEventParams
Source§fn clone(&self) -> ScriptFailedToParseEventParams
fn clone(&self) -> ScriptFailedToParseEventParams
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<'de> Deserialize<'de> for ScriptFailedToParseEventParams
impl<'de> Deserialize<'de> for ScriptFailedToParseEventParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScriptFailedToParseEventParams
impl PartialEq for ScriptFailedToParseEventParams
Source§fn eq(&self, other: &ScriptFailedToParseEventParams) -> bool
fn eq(&self, other: &ScriptFailedToParseEventParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScriptFailedToParseEventParams
Auto Trait Implementations§
impl Freeze for ScriptFailedToParseEventParams
impl RefUnwindSafe for ScriptFailedToParseEventParams
impl Send for ScriptFailedToParseEventParams
impl Sync for ScriptFailedToParseEventParams
impl Unpin for ScriptFailedToParseEventParams
impl UnwindSafe for ScriptFailedToParseEventParams
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