pub trait BinExt: 'static {
    // Required methods
    fn child(&self) -> Option<Widget>;
    fn set_child(&self, child: Option<&impl IsA<Widget>>);
    fn connect_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn child(&self) -> Option<Widget>

source

fn set_child(&self, child: Option<&impl IsA<Widget>>)

source

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

Implementors§

source§

impl<O: IsA<Bin>> BinExt for O