1 2 3 4 5
use crate::view::View; pub trait TuiModel: Send + Sync + 'static { fn view(&self) -> &View; }