pub struct ScriptParsedEventParams {Show 20 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 is_live_edit: Option<bool>,
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 debug_symbols: Option<DebugSymbols>,
pub embedder_name: Option<String>,
pub resolved_breakpoints: Option<Vec<ResolvedBreakpoint>>,
}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§is_live_edit: Option<bool>§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>§debug_symbols: Option<DebugSymbols>§embedder_name: Option<String>§resolved_breakpoints: Option<Vec<ResolvedBreakpoint>>Trait Implementations§
Source§impl Clone for ScriptParsedEventParams
impl Clone for ScriptParsedEventParams
Source§fn clone(&self) -> ScriptParsedEventParams
fn clone(&self) -> ScriptParsedEventParams
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 Debug for ScriptParsedEventParams
impl Debug for ScriptParsedEventParams
Source§impl<'de> Deserialize<'de> for ScriptParsedEventParams
impl<'de> Deserialize<'de> for ScriptParsedEventParams
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 ScriptParsedEventParams
impl PartialEq for ScriptParsedEventParams
Source§impl Serialize for ScriptParsedEventParams
impl Serialize for ScriptParsedEventParams
impl StructuralPartialEq for ScriptParsedEventParams
Auto Trait Implementations§
impl Freeze for ScriptParsedEventParams
impl RefUnwindSafe for ScriptParsedEventParams
impl Send for ScriptParsedEventParams
impl Sync for ScriptParsedEventParams
impl Unpin for ScriptParsedEventParams
impl UnwindSafe for ScriptParsedEventParams
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