//! Radio persistent state.
/// Persistent state for a radio group widget.
#[derive(Debug, Default, Clone)]pubstructRadioState{/// Index of the currently selected option.
pubselected_idx:usize,
}implRadioState{/// Select a specific index.
pubfnselect(&mutself, idx:usize){self.selected_idx = idx;}}