Files
komp_ac/canvas/src/computed/mod.rs
2025-08-18 21:10:06 +02:00

12 lines
384 B
Rust

//! 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;