Struct debugserver_types::PauseResponse [] [src]

pub struct PauseResponse {
    pub body: Option<Value>,
    pub command: String,
    pub message: Option<String>,
    pub request_seq: i64,
    pub seq: i64,
    pub success: bool,
    pub type_: String,
}

Fields

Contains request result if success is true and optional error details if success is false.

The command requested.

Contains error message if success == false.

Sequence number of the corresponding request.

Sequence number.

Outcome of the request.

One of 'request', 'response', or 'event'.

Trait Implementations

impl Clone for PauseResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.