View Source Sentry.Interfaces.Stacktrace.Frame (Sentry v10.5.0)

The struct for the stacktrace frame to be used within exceptions.

See Sentry.Interfaces.Stacktrace.

Link to this section Summary

Link to this section Types

@type t() :: %Sentry.Interfaces.Stacktrace.Frame{
  colno: pos_integer() | nil,
  context_line: String.t() | nil,
  filename: Path.t() | nil,
  function: String.t(),
  in_app: boolean(),
  lineno: pos_integer() | nil,
  module: module() | nil,
  post_context: [String.t()],
  pre_context: [String.t()],
  vars: map() | nil
}