pub trait RadioMenuItemExt: 'static {
    fn group(&self) -> Vec<RadioMenuItem>;
    fn join_group(&self, group_source: Option<&impl IsA<RadioMenuItem>>);
    fn connect_group_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors