pub struct SetBreakpointParams {
pub location: Location,
pub condition: Option<String>,
}Expand description
Sets JavaScript breakpoint at a given location. setBreakpoint
Fields§
§location: LocationLocation to set breakpoint in.
condition: Option<String>Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
Implementations§
Trait Implementations§
Source§impl Clone for SetBreakpointParams
impl Clone for SetBreakpointParams
Source§fn clone(&self) -> SetBreakpointParams
fn clone(&self) -> SetBreakpointParams
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 SetBreakpointParams
impl Debug for SetBreakpointParams
Source§impl<'de> Deserialize<'de> for SetBreakpointParams
impl<'de> Deserialize<'de> for SetBreakpointParams
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 SetBreakpointParams
impl PartialEq for SetBreakpointParams
Source§impl Serialize for SetBreakpointParams
impl Serialize for SetBreakpointParams
impl StructuralPartialEq for SetBreakpointParams
Auto Trait Implementations§
impl Freeze for SetBreakpointParams
impl RefUnwindSafe for SetBreakpointParams
impl Send for SetBreakpointParams
impl Sync for SetBreakpointParams
impl Unpin for SetBreakpointParams
impl UnsafeUnpin for SetBreakpointParams
impl UnwindSafe for SetBreakpointParams
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