pub struct SetInstrumentationBreakpoint {
pub method: SetInstrumentationBreakpointMethod,
pub params: SetInstrumentationBreakpointParams,
}Expand description
Sets instrumentation breakpoint. setInstrumentationBreakpoint
Fields§
§method: SetInstrumentationBreakpointMethod§params: SetInstrumentationBreakpointParamsImplementations§
Source§impl SetInstrumentationBreakpoint
impl SetInstrumentationBreakpoint
pub fn builder() -> SetInstrumentationBreakpointBuilder
Source§impl SetInstrumentationBreakpoint
impl SetInstrumentationBreakpoint
pub const IDENTIFIER: &'static str = "Debugger.setInstrumentationBreakpoint"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetInstrumentationBreakpoint
impl Clone for SetInstrumentationBreakpoint
Source§fn clone(&self) -> SetInstrumentationBreakpoint
fn clone(&self) -> SetInstrumentationBreakpoint
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 SetInstrumentationBreakpoint
impl CommandResult for SetInstrumentationBreakpoint
type Result = SetInstrumentationBreakpointResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetInstrumentationBreakpoint
impl Debug for SetInstrumentationBreakpoint
Source§impl<'de> Deserialize<'de> for SetInstrumentationBreakpoint
impl<'de> Deserialize<'de> for SetInstrumentationBreakpoint
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<SetInstrumentationBreakpoint> for Command
impl From<SetInstrumentationBreakpoint> for Command
Source§fn from(v: SetInstrumentationBreakpoint) -> Self
fn from(v: SetInstrumentationBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetInstrumentationBreakpoint> for DebuggerCommands
impl From<SetInstrumentationBreakpoint> for DebuggerCommands
Source§fn from(v: SetInstrumentationBreakpoint) -> Self
fn from(v: SetInstrumentationBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetInstrumentationBreakpoint> for JsProtocolCommands
impl From<SetInstrumentationBreakpoint> for JsProtocolCommands
Source§fn from(v: SetInstrumentationBreakpoint) -> Self
fn from(v: SetInstrumentationBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetInstrumentationBreakpoint
impl PartialEq for SetInstrumentationBreakpoint
Source§fn eq(&self, other: &SetInstrumentationBreakpoint) -> bool
fn eq(&self, other: &SetInstrumentationBreakpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<DebuggerCommands> for SetInstrumentationBreakpoint
impl TryFrom<DebuggerCommands> for SetInstrumentationBreakpoint
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, <SetInstrumentationBreakpoint as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SetInstrumentationBreakpoint as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SetInstrumentationBreakpoint
impl TryFrom<JsProtocolCommands> for SetInstrumentationBreakpoint
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, <SetInstrumentationBreakpoint as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SetInstrumentationBreakpoint as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetInstrumentationBreakpoint
Auto Trait Implementations§
impl Freeze for SetInstrumentationBreakpoint
impl RefUnwindSafe for SetInstrumentationBreakpoint
impl Send for SetInstrumentationBreakpoint
impl Sync for SetInstrumentationBreakpoint
impl Unpin for SetInstrumentationBreakpoint
impl UnsafeUnpin for SetInstrumentationBreakpoint
impl UnwindSafe for SetInstrumentationBreakpoint
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