Struct cdp::target::SetAutoAttachCommand [] [src]

pub struct SetAutoAttachCommand {
    pub auto_attach: bool,
    pub wait_for_debugger_on_start: bool,
}

[Experimental] Controls whether to automatically attach to new targets which are considered to be related to this one. When turned on, attaches to all existing related targets as well. When turned off, automatically detaches from all currently attached targets.

Command Target.setAutoAttach

Domain Module: cdp::target
Command Struct: cdp::target::SetAutoAttachCommand
Response Struct: cdp::target::SetAutoAttachResponse

Fields

Whether to auto-attach to related targets.

Whether to pause new targets when attaching to them. Use Runtime.runIfWaitingForDebugger to run paused targets.

Trait Implementations

impl Clone for SetAutoAttachCommand
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SetAutoAttachCommand
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for SetAutoAttachCommand
[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 CdpCommand for SetAutoAttachCommand
[src]

COMMAND_NAME: &'static str = "Target.setAutoAttach"

impl SerializeCdpCommand for SetAutoAttachCommand
[src]

[src]

[src]

impl<'de> DeserializeCdpCommand<'de> for SetAutoAttachCommand
[src]

[src]

impl<'b> HasCdpResponse<'b> for SetAutoAttachCommand
[src]