pub trait TreeDragDestExt: 'static {
    // Required methods
    fn drag_data_received(&self, dest: &TreePath, value: &Value) -> bool;
    fn row_drop_possible(&self, dest_path: &TreePath, value: &Value) -> bool;
}

Required Methods§

source

fn drag_data_received(&self, dest: &TreePath, value: &Value) -> bool

source

fn row_drop_possible(&self, dest_path: &TreePath, value: &Value) -> bool

Implementors§