[][src]Struct opentelemetry_stackdriver::proto::google::devtools::cloudtrace::v2::stack_trace::StackFrame

pub struct StackFrame {
    pub function_name: Option<TruncatableString>,
    pub original_function_name: Option<TruncatableString>,
    pub file_name: Option<TruncatableString>,
    pub line_number: i64,
    pub column_number: i64,
    pub load_module: Option<Module>,
    pub source_version: Option<TruncatableString>,
}

Represents a single stack frame in a stack trace.

Fields

function_name: Option<TruncatableString>

The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).

original_function_name: Option<TruncatableString>

An un-mangled function name, if function_name is mangled. The name can be fully-qualified (up to 1024 bytes).

file_name: Option<TruncatableString>

The name of the source file where the function call appears (up to 256 bytes).

line_number: i64

The line number in file_name where the function call appears.

column_number: i64

The column number where the function call appears, if available. This is important in JavaScript because of its anonymous functions.

load_module: Option<Module>

The binary module from where the code was loaded.

source_version: Option<TruncatableString>

The version of the deployed source code (up to 128 bytes).

Trait Implementations

impl Clone for StackFrame[src]

impl Debug for StackFrame[src]

impl Default for StackFrame[src]

impl Message for StackFrame[src]

impl PartialEq<StackFrame> for StackFrame[src]

impl StructuralPartialEq for StackFrame[src]

Auto Trait Implementations

impl RefUnwindSafe for StackFrame

impl Send for StackFrame

impl Sync for StackFrame

impl Unpin for StackFrame

impl UnwindSafe for StackFrame

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]