pub trait TableExtManual: 'static {
    fn get_selected_columns(&self) -> Vec<i32>;
    fn get_selected_rows(&self) -> Vec<i32>;
}

Required Methods

Implementors