cargo-port 0.2.0

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
8
9
10
11
12
//! Output pane render body.
//!
//! Entry: `OutputPane::render` in `pane.rs` calls
//! `render_output_pane_body`. The body reads in-flight example
//! state from `PaneRenderCtx::inflight` and the pane's own cursor /
//! selection / follow state from `OutputPane`.
mod render;

mod pane;
mod selection;
pub use pane::OutputPane;
use render::render_output_pane_body;