pub struct StackTraceResponse {
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 i64 of frames available in the stack. If omitted or if
totalFrames is larger than the available frames, a client is expected
to request frames until a request returns less frames than requested
(which indicates the end of the stack). Returning monotonically
increasing totalFrames values for subsequent requests can be used to
enforce paging in the client.
Trait Implementations§
Source§impl Clone for StackTraceResponse
impl Clone for StackTraceResponse
Source§fn clone(&self) -> StackTraceResponse
fn clone(&self) -> StackTraceResponse
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 StackTraceResponse
impl Debug for StackTraceResponse
Source§impl Default for StackTraceResponse
impl Default for StackTraceResponse
Source§fn default() -> StackTraceResponse
fn default() -> StackTraceResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StackTraceResponse
impl RefUnwindSafe for StackTraceResponse
impl Send for StackTraceResponse
impl Sync for StackTraceResponse
impl Unpin for StackTraceResponse
impl UnsafeUnpin for StackTraceResponse
impl UnwindSafe for StackTraceResponse
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