pub struct ScriptParsed {
pub method: ScriptParsedMethod,
pub params: ScriptParsedParams,
}Expand description
Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. scriptParsed
Fields§
§method: ScriptParsedMethod§params: ScriptParsedParamsImplementations§
Source§impl ScriptParsed
impl ScriptParsed
pub const IDENTIFIER: &'static str = "Debugger.scriptParsed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ScriptParsed
impl Clone for ScriptParsed
Source§fn clone(&self) -> ScriptParsed
fn clone(&self) -> ScriptParsed
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 ScriptParsed
impl Debug for ScriptParsed
Source§impl<'de> Deserialize<'de> for ScriptParsed
impl<'de> Deserialize<'de> for ScriptParsed
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 From<ScriptParsed> for DebuggerEvents
impl From<ScriptParsed> for DebuggerEvents
Source§fn from(v: ScriptParsed) -> Self
fn from(v: ScriptParsed) -> Self
Converts to this type from the input type.
Source§impl From<ScriptParsed> for Event
impl From<ScriptParsed> for Event
Source§fn from(v: ScriptParsed) -> Self
fn from(v: ScriptParsed) -> Self
Converts to this type from the input type.
Source§impl From<ScriptParsed> for JsProtocolEvents
impl From<ScriptParsed> for JsProtocolEvents
Source§fn from(v: ScriptParsed) -> Self
fn from(v: ScriptParsed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScriptParsed
impl PartialEq for ScriptParsed
Source§impl Serialize for ScriptParsed
impl Serialize for ScriptParsed
Source§impl TryFrom<DebuggerEvents> for ScriptParsed
impl TryFrom<DebuggerEvents> for ScriptParsed
Source§type Error = DebuggerEvents
type Error = DebuggerEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerEvents,
) -> Result<Self, <ScriptParsed as TryFrom<DebuggerEvents>>::Error>
fn try_from( e: DebuggerEvents, ) -> Result<Self, <ScriptParsed as TryFrom<DebuggerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ScriptParsed
impl TryFrom<Event> for ScriptParsed
Source§impl TryFrom<JsProtocolEvents> for ScriptParsed
impl TryFrom<JsProtocolEvents> for ScriptParsed
Source§type Error = JsProtocolEvents
type Error = JsProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolEvents,
) -> Result<Self, <ScriptParsed as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ScriptParsed as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ScriptParsed
Auto Trait Implementations§
impl Freeze for ScriptParsed
impl RefUnwindSafe for ScriptParsed
impl Send for ScriptParsed
impl Sync for ScriptParsed
impl Unpin for ScriptParsed
impl UnsafeUnpin for ScriptParsed
impl UnwindSafe for ScriptParsed
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