labeled_radio_button

Function labeled_radio_button 

Source
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>
where T: Eq + PartialEq + Clone + 'static,
Expand description

Renders a radio button that appears as selected if the signal equals the given enum value.