Struct chrome_remote_interface_model::debugger::SetBreakpointByUrlCommandBuilder [−][src]
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]
fn clone(&self) -> SetBreakpointByUrlCommandBuilder[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SetBreakpointByUrlCommandBuilder[src]
impl Default for SetBreakpointByUrlCommandBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for SetBreakpointByUrlCommandBuilder[src]
impl Send for SetBreakpointByUrlCommandBuilder[src]
impl Sync for SetBreakpointByUrlCommandBuilder[src]
impl Unpin for SetBreakpointByUrlCommandBuilder[src]
impl UnwindSafe for SetBreakpointByUrlCommandBuilder[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,