Struct cdp::dom_debugger::SetEventListenerBreakpointCommand [] [src]

pub struct SetEventListenerBreakpointCommand<'a> {
    pub event_name: Cow<'a, str>,
    pub target_name: Option<Cow<'a, str>>,
}

Sets breakpoint on particular DOM event.

Command DOMDebugger.setEventListenerBreakpoint

Domain Module: cdp::dom_debugger
Command Struct: cdp::dom_debugger::SetEventListenerBreakpointCommand
Response Struct: cdp::dom_debugger::SetEventListenerBreakpointResponse

Fields

DOM Event name to stop on (any DOM event will do).

[Experimental] EventTarget interface name to stop on. If equal to "*" or not provided, will stop on any EventTarget.

Trait Implementations

impl<'a> Clone for SetEventListenerBreakpointCommand<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for SetEventListenerBreakpointCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for SetEventListenerBreakpointCommand<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for SetEventListenerBreakpointCommand<'a>
[src]

COMMAND_NAME: &'static str = "DOMDebugger.setEventListenerBreakpoint"

impl<'a> SerializeCdpCommand for SetEventListenerBreakpointCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for SetEventListenerBreakpointCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for SetEventListenerBreakpointCommand<'a>
[src]