pub trait IntoTableStateModel {
// Required method
fn into_table_state_model(self) -> Model<TableState>;
}Expand description
Narrow interop bridge for table surfaces that still store view state in Model<TableState>.
This stays intentionally table-specific so LocalState<TableState> can participate in the
public table/data-table authoring lane without widening into a crate-wide IntoModel<T> story.