Struct move_bytecode_viewer::tui::tui_interface::TUIOutput
source · pub struct TUIOutput<'a> {
pub left_screen: Vec<Spans<'a>>,
pub right_screen: Vec<Spans<'a>>,
}
Expand description
The output that will be display in the TUI. The text in the left_screen
and right_screen
fields will be displayed on the left screen and right screen respectively.
Fields§
§left_screen: Vec<Spans<'a>>
The text to be displayed on the left screen. Each Spans
in the vector is a line.
right_screen: Vec<Spans<'a>>
The text to be displayed on the right screen. Each Spans
in the vector is a line.