Opinionated, component-based TUI framework for Rust - declarative components, reconciliation, layout engine, focus, overlays, and rich widgets on top of ratatui.
//! Typed context value marker trait.
/// Values that can be provided through `ContextProvider<T>` and consumed via
/// `Context::use_context::<T>()`.
pubtraitContextValue: Clone + PartialEq + 'static {}impl<T> ContextValue forTwhere T: Clone + PartialEq + 'static{}