Packages
ex_debug_toolbar
0.4.6
A debug web toolbar for Phoenix projects to display all sorts of information about request
Retired package: contains breaking change
Current section
Files
Jump to
Current section
Files
lib/ex_debug_toolbar/request.ex
defmodule ExDebugToolbar.Request do
@moduledoc false
alias ExDebugToolbar.Data.{BreakpointCollection, Timeline}
defstruct [
pid: nil,
uuid: nil,
created_at: nil,
conn: %Plug.Conn{},
ecto: [],
logs: [],
breakpoints: %BreakpointCollection{},
timeline: %Timeline{},
stopped?: false
]
end