pub trait TreeSortableExt:
IsA<TreeSortable>
+ Sealed
+ 'static {
// Provided methods
fn has_default_sort_func(&self) -> bool { ... }
fn sort_column_changed(&self) { ... }
fn connect_sort_column_changed<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
👎Deprecated: Since 4.10
Expand description
Trait containing all TreeSortable
methods.
§Implementors
Provided Methods§
Sourcefn has_default_sort_func(&self) -> bool
👎Deprecated: Since 4.10
fn has_default_sort_func(&self) -> bool
Sourcefn sort_column_changed(&self)
👎Deprecated: Since 4.10
fn sort_column_changed(&self)
Emits a GtkTreeSortable::sort-column-changed
signal on @self.
§Deprecated since 4.10
Sourcefn connect_sort_column_changed<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_sort_column_changed<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
The ::sort-column-changed signal is emitted when the sort column or sort order of @sortable is changed. The signal is emitted before the contents of @sortable are resorted.
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.