pub trait TreeViewExtManual: 'static {
    fn insert_column_with_attributes(
        &self,
        position: i32,
        title: &str,
        cell: &impl IsA<CellRenderer>,
        attributes: &[(&str, i32)]
    ) -> i32; fn unset_row_separator_func(&self); }
Expand description

Trait containing manually implemented methods of TreeView.

Required methods

Implementors