pub struct SetBreakpointOnFunctionCall {
pub method: SetBreakpointOnFunctionCallMethod,
pub params: SetBreakpointOnFunctionCallParams,
}Expand description
Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint. setBreakpointOnFunctionCall
Fields§
§method: SetBreakpointOnFunctionCallMethod§params: SetBreakpointOnFunctionCallParamsImplementations§
Source§impl SetBreakpointOnFunctionCall
impl SetBreakpointOnFunctionCall
pub const IDENTIFIER: &'static str = "Debugger.setBreakpointOnFunctionCall"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetBreakpointOnFunctionCall
impl Clone for SetBreakpointOnFunctionCall
Source§fn clone(&self) -> SetBreakpointOnFunctionCall
fn clone(&self) -> SetBreakpointOnFunctionCall
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 CommandResult for SetBreakpointOnFunctionCall
impl CommandResult for SetBreakpointOnFunctionCall
type Result = SetBreakpointOnFunctionCallResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetBreakpointOnFunctionCall
impl Debug for SetBreakpointOnFunctionCall
Source§impl<'de> Deserialize<'de> for SetBreakpointOnFunctionCall
impl<'de> Deserialize<'de> for SetBreakpointOnFunctionCall
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<SetBreakpointOnFunctionCall> for Command
impl From<SetBreakpointOnFunctionCall> for Command
Source§fn from(v: SetBreakpointOnFunctionCall) -> Self
fn from(v: SetBreakpointOnFunctionCall) -> Self
Converts to this type from the input type.
Source§impl From<SetBreakpointOnFunctionCall> for DebuggerCommands
impl From<SetBreakpointOnFunctionCall> for DebuggerCommands
Source§fn from(v: SetBreakpointOnFunctionCall) -> Self
fn from(v: SetBreakpointOnFunctionCall) -> Self
Converts to this type from the input type.
Source§impl From<SetBreakpointOnFunctionCall> for JsProtocolCommands
impl From<SetBreakpointOnFunctionCall> for JsProtocolCommands
Source§fn from(v: SetBreakpointOnFunctionCall) -> Self
fn from(v: SetBreakpointOnFunctionCall) -> Self
Converts to this type from the input type.
Source§impl TryFrom<Command> for SetBreakpointOnFunctionCall
impl TryFrom<Command> for SetBreakpointOnFunctionCall
Source§impl TryFrom<DebuggerCommands> for SetBreakpointOnFunctionCall
impl TryFrom<DebuggerCommands> for SetBreakpointOnFunctionCall
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <SetBreakpointOnFunctionCall as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SetBreakpointOnFunctionCall as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SetBreakpointOnFunctionCall
impl TryFrom<JsProtocolCommands> for SetBreakpointOnFunctionCall
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <SetBreakpointOnFunctionCall as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetBreakpointOnFunctionCall as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetBreakpointOnFunctionCall
Auto Trait Implementations§
impl Freeze for SetBreakpointOnFunctionCall
impl RefUnwindSafe for SetBreakpointOnFunctionCall
impl Send for SetBreakpointOnFunctionCall
impl Sync for SetBreakpointOnFunctionCall
impl Unpin for SetBreakpointOnFunctionCall
impl UnsafeUnpin for SetBreakpointOnFunctionCall
impl UnwindSafe for SetBreakpointOnFunctionCall
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