Struct fuel_gql_client::schema::StackTraceResponseBody
source · [−]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 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
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for StackTraceResponseBody
impl Send for StackTraceResponseBody
impl Sync for StackTraceResponseBody
impl Unpin for StackTraceResponseBody
impl UnwindSafe for StackTraceResponseBody
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more