pub struct ScriptFailedToParse {
pub method: ScriptFailedToParseMethod,
pub params: ScriptFailedToParseParams,
}Expand description
Fired when virtual machine fails to parse the script. scriptFailedToParse
Fields§
§method: ScriptFailedToParseMethod§params: ScriptFailedToParseParamsImplementations§
Source§impl ScriptFailedToParse
impl ScriptFailedToParse
pub const IDENTIFIER: &'static str = "Debugger.scriptFailedToParse"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ScriptFailedToParse
impl Clone for ScriptFailedToParse
Source§fn clone(&self) -> ScriptFailedToParse
fn clone(&self) -> ScriptFailedToParse
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 ScriptFailedToParse
impl Debug for ScriptFailedToParse
Source§impl<'de> Deserialize<'de> for ScriptFailedToParse
impl<'de> Deserialize<'de> for ScriptFailedToParse
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<ScriptFailedToParse> for DebuggerEvents
impl From<ScriptFailedToParse> for DebuggerEvents
Source§fn from(v: ScriptFailedToParse) -> Self
fn from(v: ScriptFailedToParse) -> Self
Converts to this type from the input type.
Source§impl From<ScriptFailedToParse> for Event
impl From<ScriptFailedToParse> for Event
Source§fn from(v: ScriptFailedToParse) -> Self
fn from(v: ScriptFailedToParse) -> Self
Converts to this type from the input type.
Source§impl From<ScriptFailedToParse> for JsProtocolEvents
impl From<ScriptFailedToParse> for JsProtocolEvents
Source§fn from(v: ScriptFailedToParse) -> Self
fn from(v: ScriptFailedToParse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScriptFailedToParse
impl PartialEq for ScriptFailedToParse
Source§impl Serialize for ScriptFailedToParse
impl Serialize for ScriptFailedToParse
Source§impl TryFrom<DebuggerEvents> for ScriptFailedToParse
impl TryFrom<DebuggerEvents> for ScriptFailedToParse
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, <ScriptFailedToParse as TryFrom<DebuggerEvents>>::Error>
fn try_from( e: DebuggerEvents, ) -> Result<Self, <ScriptFailedToParse as TryFrom<DebuggerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ScriptFailedToParse
impl TryFrom<Event> for ScriptFailedToParse
Source§impl TryFrom<JsProtocolEvents> for ScriptFailedToParse
impl TryFrom<JsProtocolEvents> for ScriptFailedToParse
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, <ScriptFailedToParse as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ScriptFailedToParse as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ScriptFailedToParse
Auto Trait Implementations§
impl Freeze for ScriptFailedToParse
impl RefUnwindSafe for ScriptFailedToParse
impl Send for ScriptFailedToParse
impl Sync for ScriptFailedToParse
impl Unpin for ScriptFailedToParse
impl UnsafeUnpin for ScriptFailedToParse
impl UnwindSafe for ScriptFailedToParse
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