Plushie.Event.WidgetCommandError (Plushie v0.6.0)

Copy Markdown View Source

Renderer error for a native widget command.

Emitted when the renderer cannot deliver or execute an widget_command.

Fields

  • reason - machine-readable reason from the renderer
  • node_id - target widget node ID
  • op - command operation name
  • extension - native widget type when known
  • message - human-readable error text

Summary

Types

t()

@type t() :: %Plushie.Event.WidgetCommandError{
  extension: String.t() | nil,
  message: String.t() | nil,
  node_id: String.t() | nil,
  op: String.t() | nil,
  reason: String.t()
}