pub struct StackTraceArguments {
pub thread_id: u64,
pub start_frame: Option<u64>,
pub levels: Option<u64>,
pub format: Option<StackFrameFormat>,
}
Expand description
Arguments for stackTrace
request.
Fields§
§thread_id: u64
Retrieve the stacktrace for this thread.
start_frame: Option<u64>
The index of the first frame to return; if omitted frames start at 0.
levels: Option<u64>
The maximum number of frames to return. If levels is not specified or 0, all frames are returned.
format: Option<StackFrameFormat>
Specifies details on how to format the stack frames.
The attribute is only honored by a debug adapter if the corresponding capability supportsValueFormattingOptions
is true.
Trait Implementations§
Source§impl Clone for StackTraceArguments
impl Clone for StackTraceArguments
Source§fn clone(&self) -> StackTraceArguments
fn clone(&self) -> StackTraceArguments
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StackTraceArguments
impl Debug for StackTraceArguments
Source§impl<'de> Deserialize<'de> for StackTraceArguments
impl<'de> Deserialize<'de> for StackTraceArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StackTraceArguments
impl RefUnwindSafe for StackTraceArguments
impl Send for StackTraceArguments
impl Sync for StackTraceArguments
impl Unpin for StackTraceArguments
impl UnwindSafe for StackTraceArguments
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more