[][src]Struct opentelemetry_stackdriver::proto::google::devtools::cloudtrace::v2::StackTrace

pub struct StackTrace {
    pub stack_frames: Option<StackFrames>,
    pub stack_trace_hash_id: i64,
}

A call stack appearing in a trace.

Fields

stack_frames: Option<StackFrames>

Stack frames in this stack trace. A maximum of 128 frames are allowed.

stack_trace_hash_id: i64

The hash ID is used to conserve network bandwidth for duplicate stack traces within a single trace.

Often multiple spans will have identical stack traces. The first occurrence of a stack trace should contain both the stackFrame content and a value in stackTraceHashId.

Subsequent spans within the same request can refer to that stack trace by only setting stackTraceHashId.

Trait Implementations

impl Clone for StackTrace[src]

impl Debug for StackTrace[src]

impl Default for StackTrace[src]

impl Message for StackTrace[src]

impl PartialEq<StackTrace> for StackTrace[src]

impl StructuralPartialEq for StackTrace[src]

Auto Trait Implementations

impl RefUnwindSafe for StackTrace

impl Send for StackTrace

impl Sync for StackTrace

impl Unpin for StackTrace

impl UnwindSafe for StackTrace

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]