pub struct StackTraceResponseBody {
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 number of frames available.
Trait Implementations§
Source§impl Clone for StackTraceResponseBody
impl Clone for StackTraceResponseBody
Source§fn clone(&self) -> StackTraceResponseBody
fn clone(&self) -> StackTraceResponseBody
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 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 PartialEq for StackTraceResponseBody
impl PartialEq for StackTraceResponseBody
Source§impl Serialize for StackTraceResponseBody
impl Serialize 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