Struct debugserver_types::RunInTerminalRequestArguments [] [src]

pub struct RunInTerminalRequestArguments {
    pub args: Vec<String>,
    pub cwd: String,
    pub env: Option<BTreeMap<String, String>>,
    pub kind: Option<String>,
    pub title: Option<String>,
}

Arguments for 'runInTerminal' request.

Fields

List of arguments. The first argument is the command to run.

Working directory of the command.

Environment key-value pairs that are added to the default environment.

What kind of terminal to launch.

Optional title of the terminal.

Trait Implementations

impl Clone for RunInTerminalRequestArguments
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RunInTerminalRequestArguments
[src]

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

This method tests for !=.

impl Debug for RunInTerminalRequestArguments
[src]

Formats the value using the given formatter.