Struct cdp::debugger::ContinueToLocationCommand [] [src]

pub struct ContinueToLocationCommand<'a> {
    pub location: Location<'a>,
    pub target_call_frames: Option<ContinueToLocationCommandTargetCallFrames>,
}

Continues execution until specific location is reached.

Command Debugger.continueToLocation

Domain Module: cdp::debugger
Command Struct: cdp::debugger::ContinueToLocationCommand
Response Struct: cdp::debugger::ContinueToLocationResponse

Fields

Location to continue to.

[Experimental]

Trait Implementations

impl<'a> Clone for ContinueToLocationCommand<'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 ContinueToLocationCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ContinueToLocationCommand<'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 ContinueToLocationCommand<'a>
[src]

COMMAND_NAME: &'static str = "Debugger.continueToLocation"

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

[src]

[src]

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

[src]

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