Trait FlowBoxChildExt

Source
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§

Source

fn changed(&self)

Source

fn get_index(&self) -> i32

Source

fn is_selected(&self) -> bool

Source

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

Source

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.

Implementors§