rnk 0.17.3

A React-like declarative terminal UI framework for Rust, inspired by Ink
Documentation
//! Rendering system
//!
//! This module provides the core rendering infrastructure for rnk:
//!
//! - **App**: The main application runner
//! - **AppBuilder**: Fluent API for configuring apps
//! - **Terminal**: Low-level terminal abstraction
//! - **Output**: Virtual output buffer for rendering
//!
//! ## Render Modes
//!
//! rnk supports two rendering modes:
//!
//! - **Inline mode** (default): Output appears at current cursor position,
//!   persists in terminal history. Like Ink and Bubbletea's default.
//!
//! - **Fullscreen mode**: Uses alternate screen buffer, content is cleared
//!   on exit. Like vim or Bubbletea's `WithAltScreen()`.
//!
//! ## Example
//!
//! ```ignore
//! use rnk::prelude::*;
//!
//! // Inline mode (default)
//! render(my_app).run()?;
//!
//! // Fullscreen mode
//! render(my_app).fullscreen().run()?;
//! ```

mod app;
mod builder;
pub(crate) mod element_renderer;
mod filter;
mod frame_rate;
mod output;
pub(crate) mod registry;
pub(crate) mod render_to_string;
pub(crate) mod runtime;
pub(crate) mod static_content;
mod terminal;
pub(crate) mod tree_renderer;

// Core App type
pub use app::App;

// Builder and options
pub use builder::{AppBuilder, AppOptions, CancelToken, render, render_fullscreen, render_inline};

// Registry APIs
pub use registry::{
    IntoPrintable, ModeSwitch, Printable, RenderHandle, enter_alt_screen, exit_alt_screen,
    is_alt_screen, println, println_trimmed, render_handle, request_render,
};

// Element rendering APIs
pub use render_to_string::{
    render_to_string, render_to_string_auto, render_to_string_no_trim, render_to_string_raw,
};

// Frame rate control
pub use frame_rate::{FrameRateConfig, FrameRateController, FrameRateStats, SharedFrameRateStats};

// Event filtering
pub use filter::{EventFilter, FilterChain, FilterResult};

// Terminal and output
pub use output::{ClipRegion, Output};
pub use terminal::Terminal;