logo
pub trait BinExt: 'static {
    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

Implementors