Struct debugserver_types::StackTraceArguments
[−]
[src]
pub struct StackTraceArguments {
pub levels: Option<i64>,
pub start_frame: Option<i64>,
pub thread_id: i64,
}Arguments for 'stackTrace' request.
Fields
levels: Option<i64>
The maximum number of frames to return. If levels is not specified or 0, all frames are returned.
start_frame: Option<i64>
The index of the first frame to return; if omitted frames start at 0.
thread_id: i64
Retrieve the stacktrace for this thread.
Trait Implementations
impl Clone for StackTraceArguments[src]
fn clone(&self) -> StackTraceArguments
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for StackTraceArguments[src]
fn eq(&self, __arg_0: &StackTraceArguments) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StackTraceArguments) -> bool
This method tests for !=.