pub struct StackTraceArguments {
pub format: Option<StackFrameFormat>,
pub levels: Option<i64>,
pub start_frame: Option<i64>,
pub thread_id: i64,
}
Expand description
Arguments for ‘stackTrace’ request.
Fields§
§format: Option<StackFrameFormat>
Specifies details on how to format the stack frames.
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§
Source§impl Clone for StackTraceArguments
impl Clone for StackTraceArguments
Source§fn clone(&self) -> StackTraceArguments
fn clone(&self) -> StackTraceArguments
Returns a copy 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
Source§impl PartialEq for StackTraceArguments
impl PartialEq for StackTraceArguments
Source§impl Serialize for StackTraceArguments
impl Serialize for StackTraceArguments
impl StructuralPartialEq for StackTraceArguments
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