pub trait BinExt: IsA<Bin> + 'static {
// Provided 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 { ... }
}
Provided Methods§
fn connect_child_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.