Struct chrome_remote_interface_model::debugger::SetBreakpointByUrlCommandBuilder[][src]

pub struct SetBreakpointByUrlCommandBuilder { /* fields omitted */ }

Implementations

impl SetBreakpointByUrlCommandBuilder[src]

pub fn line_number(&mut self, v: u32) -> &mut Self[src]

Line number to set breakpoint at.

pub fn url(&mut self, v: String) -> &mut Self[src]

URL of the resources to set breakpoint on.

pub fn url_regex(&mut self, v: String) -> &mut Self[src]

Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.

pub fn script_hash(&mut self, v: String) -> &mut Self[src]

Script hash of the resources to set breakpoint on.

pub fn column_number(&mut self, v: u32) -> &mut Self[src]

Offset in the line to set breakpoint at.

pub fn condition(&mut self, v: String) -> &mut Self[src]

Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.

pub fn build(&mut self) -> Result<SetBreakpointByUrlCommand, &'static str>[src]

Trait Implementations

impl Clone for SetBreakpointByUrlCommandBuilder[src]

impl Debug for SetBreakpointByUrlCommandBuilder[src]

impl Default for SetBreakpointByUrlCommandBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.