pub struct StackTraceArguments {
pub thread_id: i64,
pub start_frame: Option<i64>,
pub levels: Option<i64>,
}Expand description
Arguments for stackTrace request
Fields§
§thread_id: i64Thread to retrieve the stack trace for
start_frame: Option<i64>Index of the first frame to return (0-based)
levels: Option<i64>Maximum number of frames to return
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 (const: unstable) · 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 UnsafeUnpin 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