pub trait EventBoxExt: 'static {
// Required methods
fn get_above_child(&self) -> bool;
fn get_visible_window(&self) -> bool;
fn set_above_child(&self, above_child: bool);
fn set_visible_window(&self, visible_window: bool);
fn connect_property_above_child_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_visible_window_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
Required Methods§
fn get_above_child(&self) -> bool
fn get_visible_window(&self) -> bool
fn set_above_child(&self, above_child: bool)
fn set_visible_window(&self, visible_window: bool)
fn connect_property_above_child_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_visible_window_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.