pub trait TreeModelFilterExtManual: 'static {
    // Required method
    fn set_modify_func<F: Fn(&TreeModel, &TreeIter, i32) -> Value + 'static>(
        &self,
        types: &[Type],
        func: F
    );
}
Expand description

Trait containing manually implemented methods of TreeModelFilter.

Required Methods§

source

fn set_modify_func<F: Fn(&TreeModel, &TreeIter, i32) -> Value + 'static>( &self, types: &[Type], func: F )

Implementors§