tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// src/computed/mod.rs
//! Computed fields subsystem.
//!
//! This module exposes the provider trait and the internal state management
//! for computed (display-only) fields. Computed fields are values derived
//! from other fields in the form and are not directly editable by the user.

pub mod provider;
pub mod state;

pub use provider::{ComputedContext, ComputedProvider};
pub use state::ComputedState;