logo
pub trait ViewSwitcherExt: 'static {
    fn stack(&self) -> Option<Stack>;
    fn set_stack(&self, value: &Stack);
    fn connect_stack_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all ViewSwitcher methods.

Implementors

ViewSwitcher

Required Methods

Implementors