Trait RadioButtonExt

Source
pub trait RadioButtonExt: 'static {
    // Required methods
    fn get_group(&self) -> Vec<RadioButton>;
    fn join_group<P: IsA<RadioButton>>(&self, group_source: Option<&P>);
    fn connect_group_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_group(&self) -> Vec<RadioButton>

Source

fn join_group<P: IsA<RadioButton>>(&self, group_source: Option<&P>)

Source

fn connect_group_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§