pub struct StackTraceResponse {
pub stack_frames: Vec<StackFrame>,
pub total_frames: Option<u64>,
}
Expand description
Response to stackTrace
request.
Fields§
§stack_frames: Vec<StackFrame>
The frames of the stack frame. If the array has length zero, there are no stack frames available. This means that there is no location information available.
total_frames: Option<u64>
The total number 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<'de> Deserialize<'de> for StackTraceResponse
impl<'de> Deserialize<'de> for StackTraceResponse
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 StackTraceResponse
impl RefUnwindSafe for StackTraceResponse
impl Send for StackTraceResponse
impl Sync for StackTraceResponse
impl Unpin 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