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
args: Vec<String>
List of arguments. The first argument is the command to run.
cwd: String
Working directory of the command.
env: Option<BTreeMap<String, String>>
Environment key-value pairs that are added to the default environment.
kind: Option<String>
What kind of terminal to launch.
title: Option<String>
Optional title of the terminal.
Trait Implementations
impl Clone for RunInTerminalRequestArguments
[src]
fn clone(&self) -> RunInTerminalRequestArguments
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for RunInTerminalRequestArguments
[src]
fn eq(&self, __arg_0: &RunInTerminalRequestArguments) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RunInTerminalRequestArguments) -> bool
[src]
This method tests for !=
.