logo
pub trait SettingsPageExt: 'static {
    fn title(&self) -> Option<GString>;
    fn set_title(&self, value: &str);
    fn add_list(&self, list: &impl IsA<ContentList>);
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all SettingsPage methods.

Implementors

SettingsPage

Required Methods

Implementors