Trait libhelium::prelude::TabPageExt

source ·
pub trait TabPageExt: IsA<TabPage> + Sealed + 'static {
    // Provided methods
    fn tab(&self) -> Tab { ... }
    fn set_tab(&self, value: &impl IsA<Tab>) { ... }
    fn connect_tab_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all TabPage methods.

§Implementors

TabPage

Provided Methods§

source

fn tab(&self) -> Tab

source

fn set_tab(&self, value: &impl IsA<Tab>)

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<TabPage>> TabPageExt for O