Struct debugserver_types::RunInTerminalResponse
[−]
[src]
pub struct RunInTerminalResponse {
pub body: RunInTerminalResponseBody,
pub command: String,
pub message: Option<String>,
pub request_seq: i64,
pub seq: i64,
pub success: bool,
pub type_: String,
}Fields
body: RunInTerminalResponseBody
Contains request result if success is true and optional error details if success is false.
command: String
The command requested.
message: Option<String>
Contains error message if success == false.
request_seq: i64
Sequence number of the corresponding request.
seq: i64
Sequence number.
success: bool
Outcome of the request.
type_: String
One of 'request', 'response', or 'event'.
Trait Implementations
impl Clone for RunInTerminalResponse[src]
fn clone(&self) -> RunInTerminalResponse[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 RunInTerminalResponse[src]
fn eq(&self, __arg_0: &RunInTerminalResponse) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RunInTerminalResponse) -> bool[src]
This method tests for !=.