Trait RecentChooserMenuExt

Source
pub trait RecentChooserMenuExt: 'static {
    // Required methods
    fn get_show_numbers(&self) -> bool;
    fn set_show_numbers(&self, show_numbers: bool);
    fn connect_property_show_numbers_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_show_numbers(&self) -> bool

Source

fn set_show_numbers(&self, show_numbers: bool)

Source

fn connect_property_show_numbers_notify<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§