Struct gapi_grpc::google::devtools::clouddebugger::v2::StackFrame[][src]

pub struct StackFrame {
    pub function: String,
    pub location: Option<SourceLocation>,
    pub arguments: Vec<Variable>,
    pub locals: Vec<Variable>,
}

Represents a stack frame context.

Fields

function: String

Demangled function name at the call site.

location: Option<SourceLocation>

Source location of the call site.

arguments: Vec<Variable>

Set of arguments passed to this function. Note that this might not be populated for all stack frames.

locals: Vec<Variable>

Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.

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> 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]