Expand description
Cleanroom Rust port of upstream Go source file: tea.go (Program runner)
Upstream Target Tag / Version: v2.0.8
A tutorial is available at https://github.com/charmbracelet/bubbletea/tree/master/tutorials
Example programs can be found at https://github.com/charmbracelet/bubbletea/tree/master/examples
Structs§
- Program
- Program is the runner for a Bubble Tea v2.0.8 application.
Enums§
- Program
Error - ProgramError is the error type returned by Program::run.
Constants§
- ERR_
INTERRUPTED ErrInterrupted is returned by [Program.Run] when the program get a SIGINT signal, or when it receives a InterruptMsg. - ERR_
PROGRAM_ KILLED ErrProgramKilled is returned by [Program.Run] when the program gets killed. - ERR_
PROGRAM_ PANIC ErrProgramPanic is returned by [Program.Run] when the program recovers from a panic.