pub struct SetBreakpointByUrlReturns {
pub breakpointId: BreakpointId,
pub locations: Vec<Location>,
}Expand description
Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in ‘locations’ property. Further matching script parsing will result in subsequent ‘breakpointResolved’ events issued. This logical breakpoint will survive page reloads.
Fields§
§breakpointId: BreakpointIdId of the created breakpoint for further reference.
locations: Vec<Location>List of the locations this breakpoint resolved into upon addition.
Trait Implementations§
Source§impl Clone for SetBreakpointByUrlReturns
impl Clone for SetBreakpointByUrlReturns
Source§fn clone(&self) -> SetBreakpointByUrlReturns
fn clone(&self) -> SetBreakpointByUrlReturns
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 SetBreakpointByUrlReturns
impl Debug for SetBreakpointByUrlReturns
Source§impl Default for SetBreakpointByUrlReturns
impl Default for SetBreakpointByUrlReturns
Source§fn default() -> SetBreakpointByUrlReturns
fn default() -> SetBreakpointByUrlReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetBreakpointByUrlReturns
impl<'de> Deserialize<'de> for SetBreakpointByUrlReturns
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
Auto Trait Implementations§
impl Freeze for SetBreakpointByUrlReturns
impl RefUnwindSafe for SetBreakpointByUrlReturns
impl Send for SetBreakpointByUrlReturns
impl Sync for SetBreakpointByUrlReturns
impl Unpin for SetBreakpointByUrlReturns
impl UnsafeUnpin for SetBreakpointByUrlReturns
impl UnwindSafe for SetBreakpointByUrlReturns
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