pub fn labeled_radio_button<S: Display + 'static, T>(
represented_value: T,
actual_value: impl Fn() -> T + 'static,
label: impl Fn() -> S + 'static,
) -> ValueContainer<T>Expand description
Renders a radio button that appears as selected if the signal equals the given enum value.