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

Required Methods

Implementors