pub trait TreeModelFilterExt: 'static {
    fn clear_cache(&self);
    fn convert_child_iter_to_iter(
        &self,
        child_iter: &TreeIter
    ) -> Option<TreeIter>; fn convert_child_path_to_path(
        &self,
        child_path: &TreePath
    ) -> Option<TreePath>; fn convert_iter_to_child_iter(&self, filter_iter: &TreeIter) -> TreeIter; fn convert_path_to_child_path(
        &self,
        filter_path: &TreePath
    ) -> Option<TreePath>; fn model(&self) -> TreeModel; fn refilter(&self); fn set_visible_column(&self, column: i32); fn set_visible_func<P: Fn(&TreeModel, &TreeIter) -> bool + 'static>(
        &self,
        func: P
    ); fn child_model(&self) -> Option<TreeModel>; }

Required methods

Implementors