pub trait SorterExt: 'static {
fn changed(&self, change: SorterChange);
fn compare(
&self,
item1: &impl IsA<Object>,
item2: &impl IsA<Object>
) -> Ordering;
fn order(&self) -> SorterOrder;
fn connect_changed<F: Fn(&Self, SorterChange) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Required Methods
source
fn changed(&self, change: SorterChange)
source
fn order(&self) -> SorterOrder
sourcefn connect_changed<F: Fn(&Self, SorterChange) + 'static>(