logo
pub trait TabPageExt: 'static {
    fn tab(&self) -> Option<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

Required Methods

Implementors