pub struct StackTraceResponseBody {
pub stack_frames: Vec<StackFrame>,
pub total_frames: Option<i32>,
/* private fields */
}
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<i32>
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.
Implementations§
Trait Implementations§
Source§impl Clone for StackTraceResponseBody
impl Clone for StackTraceResponseBody
Source§fn clone(&self) -> StackTraceResponseBody
fn clone(&self) -> StackTraceResponseBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StackTraceResponseBody
impl Debug for StackTraceResponseBody
Source§impl<'de> Deserialize<'de> for StackTraceResponseBody
impl<'de> Deserialize<'de> for StackTraceResponseBody
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 From<StackTraceResponseBody> for SuccessResponse
impl From<StackTraceResponseBody> for SuccessResponse
Source§fn from(args: StackTraceResponseBody) -> Self
fn from(args: StackTraceResponseBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StackTraceResponseBody
impl PartialEq for StackTraceResponseBody
Source§fn eq(&self, other: &StackTraceResponseBody) -> bool
fn eq(&self, other: &StackTraceResponseBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for StackTraceResponseBody
impl Serialize for StackTraceResponseBody
impl Eq for StackTraceResponseBody
impl StructuralPartialEq for StackTraceResponseBody
Auto Trait Implementations§
impl Freeze for StackTraceResponseBody
impl RefUnwindSafe for StackTraceResponseBody
impl Send for StackTraceResponseBody
impl Sync for StackTraceResponseBody
impl Unpin for StackTraceResponseBody
impl UnwindSafe for StackTraceResponseBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.