pub trait FlowBoxChildExt: 'static {
// Required methods
fn changed(&self);
fn get_index(&self) -> i32;
fn is_selected(&self) -> bool;
fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_activate(&self);
}
Required Methods§
fn changed(&self)
fn get_index(&self) -> i32
fn is_selected(&self) -> bool
fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn emit_activate(&self)
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.