Struct debugserver_types::StackTraceResponseBody
[−]
[src]
pub struct StackTraceResponseBody {
pub stack_frames: Vec<StackFrame>,
pub total_frames: Option<i64>,
}Fields
stack_frames: Vec<StackFrame>
The frames of the stackframe. If the array has length zero, there are no stackframes available. This means that there is no location information available.
total_frames: Option<i64>
The total number of frames available.
Trait Implementations
impl Clone for StackTraceResponseBody[src]
fn clone(&self) -> StackTraceResponseBody[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 StackTraceResponseBody[src]
fn eq(&self, __arg_0: &StackTraceResponseBody) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StackTraceResponseBody) -> bool[src]
This method tests for !=.