Trait ListBoxRowExt

Source
pub trait ListBoxRowExt:
    IsA<ListBoxRow>
    + Sealed
    + 'static {
Show 13 methods // Provided methods fn changed(&self) { ... } fn is_activatable(&self) -> bool { ... } fn header(&self) -> Option<Widget> { ... } fn index(&self) -> i32 { ... } fn is_selectable(&self) -> bool { ... } fn is_selected(&self) -> bool { ... } fn set_activatable(&self, activatable: bool) { ... } fn set_header(&self, header: Option<&impl IsA<Widget>>) { ... } fn set_selectable(&self, selectable: bool) { ... } fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn emit_activate(&self) { ... } fn connect_activatable_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_selectable_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn changed(&self)

Source

fn is_activatable(&self) -> bool

Source

fn header(&self) -> Option<Widget>

Source

fn index(&self) -> i32

Source

fn is_selectable(&self) -> bool

Source

fn is_selected(&self) -> bool

Source

fn set_activatable(&self, activatable: bool)

Source

fn set_header(&self, header: Option<&impl IsA<Widget>>)

Source

fn set_selectable(&self, selectable: bool)

Source

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

Source

fn emit_activate(&self)

Source

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

Source

fn connect_selectable_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.

Implementors§