Struct debugserver_types::StepBackResponse
[−]
[src]
pub struct StepBackResponse {
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
body: Option<Value>
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 StepBackResponse[src]
fn clone(&self) -> StepBackResponse[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 StepBackResponse[src]
fn eq(&self, __arg_0: &StepBackResponse) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StepBackResponse) -> bool[src]
This method tests for !=.